body {
    overflow-x: hidden;
}

/*.logo-img {
    height: 40px;
    width: auto;
}*/

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2d5f3f;
}
.logo-o {
    color: #4caf50;
    font-size: 2rem;
}

/* .hero {
    background: linear-gradient(135deg, #1e7e52 0%, #2d5f6f 50%, #3d5a7c 100%);
} */
html {
    scroll-behavior: smooth;
}

body {
    position: relative;
}


/* .navbar .nav-link.active {
    color: #007B3C !important;
    font-weight: 700;
    position: relative;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #007B3C;
    border-radius: 50%;
} */


.hero {
    background: linear-gradient(135deg, #00eeaf 0%, #006c2d 50%, #00EEAF 100%);
}

.chat-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1000;
}

/* HERO CONTENT */
.principale {
    margin-top: 6rem;
}

/* PHONE IMAGES */
.phone img {
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.phone img:hover {
    transform: translateY(-10px);
}

/* NAV PADDING */
.nav-padding {
    padding-left: 3rem;
    padding-right: 3rem;
}

.nav-padding-section {
    padding-left: 4rem;
    padding-right: 4rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .nav-padding,
    .nav-padding-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .principale {
        margin-top: 3rem;
    }

    .phone img {
        max-height: 280px;
    }

    h1.display-3 {
        font-size: 2.2rem;
    }

    p.fs-4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .phone img {
        max-height: 220px;
    }
}
