   /* CORREÇÃO DEFINITIVA - SEM ESPAÇOS LATERAIS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        /* Imagem de introdução */
        .zoom-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            overflow: hidden;
            pointer-events: none;
        }

        .zoom-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
        }

        /* Navbar */
        .navbar {
            background-color: rgba(0, 0, 0, 0) !important; 
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 10px 5% !important;
        }

        .navbar-toggler {
            background-color: #7ed957;
            color: #fff;
            border-radius: 70px;
            height: 50px;
            box-shadow: 0px 0px 0px #7ed957, 0px 0px 0px rgba(255, 255, 255, 0.25), 
                        inset 1.5px 1.5px 3px #ffffff, inset -1.5px -1.5px 3px #ffffff;
            border: none;
        }

        /* HERO SECTION COMPACTA - Altura reduzida */
        .hero {
            background-image: url('imgs/pexels-lum3n-44775-406014.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 70vh; /* Alterado de 100vh para 70vh */
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
            padding: 0 !important;
            margin: 0 !important;
            position: relative;
            width: 100%;
            left: 0;
            right: 0;
        }

        /* Container interno para o conteúdo da hero */
        .hero-content {
            width: 90%;
            max-width: 1200px;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: bold;
            color: #7ed957;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            margin-top: 1rem;
            color: #ffc700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            max-width: 800px;
            line-height: 1.5;
        }

        .linha {
            width: min(400px, 80vw);
            color: #cd9560;
            border: 1px solid #cd9560;
            margin: 10px 0;
        }

        /* Botões na hero section */
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Seções com padding lateral controlado */
        .services, 
        .about, 
        .testimonials {
            padding: 100px 5%;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }

        .services {
            background-color: #f9f9f9;
        }

        .testimonials {
            background: linear-gradient(135deg, #7ed957 0%, #96e675 100%);
            color: white;
            text-align: center;
        }

        /* Containers responsivos */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            width: 100%;
            max-width: 100%;
        }

        .section-title h2 {
            font-size: clamp(2rem, 5vw, 2.5rem);
            color: #333;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #777;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            width: 100%;
            max-width: 100%;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            width: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-card img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffc700;
        }

        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .read-more {
            color: #ffc700;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* About Section */
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
        }

        .about-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 5px solid #ffc700;
            border-radius: 10px;
            top: -20px;
            left: -20px;
            z-index: -1;
        }

        .about-content {
            opacity: 0;
            transform: translateX(50px);
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .about-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials .section-title h2,
        .testimonials .section-title p {
            color: white;
        }

        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            width: 100%;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 10px;
            margin: 20px;
            opacity: 0;
            transform: translateY(30px);
            width: calc(100% - 40px);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid white;
        }

        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 50px 5% 20px;
            width: 100%;
            max-width: 100vw;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            width: 100%;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #7ed957;
        }

        .footer-col p {
            color: #bbb;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #7ed957;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        .Powered {
            color: white;
        }

        a {
            color: white;
        }

        /* Botão Stretch */
        .stretch-btn {
            --size: 48px;
            --radius: 9999px;
            --bg: #7ed957;
            --fg: #fff;
            --hover: #ffc700;

            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: var(--size);
            padding: 0 16px;
            gap: 8px;
            border: none;
            border-radius: var(--radius);
            background: var(--bg);
            color: var(--fg);
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,.18);
            transition: box-shadow .2s ease, background .2s ease;
        }

        .stretch-btn .btn__icon {
            display: inline-grid;
            place-items: center;
            width: var(--size);
            height: var(--size);
            flex: 0 0 var(--size);
            font-size: 18px;
            transition: transform .25s ease;
        }

        .stretch-btn .btn__label {
            white-space: nowrap;
            max-width: 0;
            opacity: 0;
            margin-left: 0;
            transition: max-width .35s ease, opacity .20s ease .12s, margin-left .35s ease;
        }

        .stretch-btn:hover,
        .stretch-btn:focus-visible {
            background: linear-gradient(90deg, var(--bg), var(--hover));
            box-shadow: 0 10px 26px rgba(31,111,235,.35);
        }

        .stretch-btn:hover .btn__icon,
        .stretch-btn:focus-visible .btn__icon {
            transform: translateX(2px);
        }

        .stretch-btn:hover .btn__label,
        .stretch-btn:focus-visible .btn__label {
            max-width: 140px;
            opacity: 1;
            margin-left: 6px;
        }

        .stretch-btn:focus-visible {
            outline: 2px solid #6ea8ff;
            outline-offset: 2px;
        }

        /* Offcanvas */
        .offcanvas-start {
            background: #ffffff !important;
        }

        .nav-link {
            color: #333333 !important;
            font-weight: 500;
            padding: 12px 20px !important;
            margin: 0 15px;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 2px solid transparent;
        }

        .nav-link:hover {
            color: #333333 !important;
            background-color: transparent !important;
            border-bottom: 2px solid #7ed957;
            transform: none;
        }

        .nav-link.active {
            color: #333333 !important;
            background-color: transparent !important;
            border-bottom: 2px solid #ffc700;
        }

        .nav-link.active:hover {
            border-bottom: 2px solid #7ed957;
        }

        .offcanvas-header {
            background: #ffffff;
            border-bottom: 1px solid #dee2e6;
            padding: 1rem 1rem;
        }

        .offcanvas-title {
            color: #333333;
            font-weight: 600;
        }

        hr {
            margin: 0;
            color: #dee2e6;
        }

        .btn-close {
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .btn-close:hover {
            opacity: 1;
        }

        /* Animações */
        .animate {
            opacity: 0;
            transition: all 0.8s ease;
        }

        .animate.show {
            opacity: 1;
            transform: translate(0, 0) !important;
        }

        /* RESPONSIVIDADE - Apenas ajustes de altura */
        @media (max-width: 992px) {
            .about {
                grid-template-columns: 1fr;
            }

            .about-img {
                order: 2;
            }

            .about-content {
                order: 1;
            }

            .about-img::before {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .stretch-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .hero {
                height: 60vh;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                padding: 0 15px;
            }

            .services-container {
                grid-template-columns: 1fr;
            }

            .testimonial {
                margin: 10px;
                padding: 20px;
            }

            .services, 
            .about, 
            .testimonials {
                padding: 80px 4%;
            }
            
            .hero-buttons {
                gap: 15px;
            }
            
            .hero {
                height: 55vh;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .services, 
            .about, 
            .testimonials {
                padding: 60px 3%;
            }

            .linha {
                width: 70vw;
            }
            
            .hero-content {
                padding: 0 10px;
            }
            
            .stretch-btn {
                --size: 42px;
                font-size: 0.9rem;
            }
            
            .hero {
                height: 50vh;
            }
        }
        
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .hero-buttons {
                gap: 10px;
            }
            
            .hero {
                height: 45vh;
            }
        }