 :root {
            --primary: #00a3a8;
            --secondary: #00777b;
            --accent: #00c9cf;
            --dark: #005457;
            --light: #e6f7f8;
            --white: #ffffff;
            --whatsapp: #25D366;
            --text: #333333;
            --gray: #f5f5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-whatsapp {
            background-color: var(--whatsapp);
            border-color: var(--whatsapp);
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
            border-color: #128C7E;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title .subtitle {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo img {
            height: 80px;
            width: auto;
        }

        /* --- INÍCIO: ESTILOS DO NOVO MENU DROPDOWN --- */
        .nav-menu {
            display: flex;
            align-items: center;
        }

        .menu-widgets {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .menu-widgets > li {
            position: relative;
        }
        
        .menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
        }
        
        .menu-item:hover,
        .menu-item.active {
            background: rgba(0, 163, 168, 0.1);
        }
        
        .menu-icon {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .menu-text {
            font-size: 11px;
            font-weight: 600;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .menu-text .fa-chevron-down {
            font-size: 8px;
        }
        
        /* Estilo do Submenu (Dropdown) */
        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 10px 0;
            min-width: 240px;
            z-index: 1001;
            border-top: 3px solid var(--primary);
        }

        .menu-widgets > li:hover > .submenu {
            display: block;
        }

        .submenu li a {
            padding: 12px 20px;
            display: block;
            font-size: 14px;
            color: var(--dark);
            font-weight: 500;
            white-space: nowrap;
        }

        .submenu li a:hover {
            background-color: var(--light);
            color: var(--primary);
        }
        /* --- FIM: ESTILOS DO NOVO MENU DROPDOWN --- */

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Banner */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            background-color: var(--dark);
            overflow: hidden;
            margin-top: 80px;
        }

        .hero-slider {
            height: 100%;
            width: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 84, 87, 0.8), rgba(0, 84, 87, 0.4));
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 100%;
            z-index: 10;
            padding: 0 2rem;
        }

        .hero-text {
            max-width: 700px;
        }

        .hero-title {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-btns {
    display: flex;
    justify-content: center; /* Adicione esta linha */
    gap: 1.5rem;
    margin-top: 2rem;
}

        .slider-controls {
            position: absolute;
            bottom: 5rem;
            left: 2rem;
            z-index: 20;
            display: flex;
            gap: 1rem;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background-color: var(--primary);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 20;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: var(--primary);
            transform: scale(1.3);
        }

        /* Services Cards */
        .services-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: -100px;
            position: relative;
            z-index: 100;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 100%;
            max-width: 350px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 2rem;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .service-text {
            color: var(--text);
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .read-more i {
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .about-img img {
            width: 100%;
            height: auto;
            transition: all 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text .section-title {
            text-align: left;
            margin-bottom: 2rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .features-list {
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            margin-right: 1rem;
            color: var(--primary);
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .feature-text p {
            margin-bottom: 0;
            color: var(--text);
            font-size: 0.95rem;
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            transition: all 0.3s ease;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 84, 87, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-title {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .gallery-link {
            display: inline-flex;
            align-items: center;
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .gallery-link i {
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }

        .gallery-link:hover i {
            transform: translateX(5px);
        }

        .testimonials {
    background-color: var(--light);
    padding: 4rem 0;
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider .testimonial {
    display: none;
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonials-slider .testimonial.active {
    display: block;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text:before {
    top: -15px;
    left: -15px;
}

.testimonial-text:after {
    bottom: -25px;
    right: -15px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #FFD700;
    margin-top: 0.5rem;
}

/* Navegação */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots */
.dots {
    text-align: center;
    margin-top: 1rem;
}

.dots span {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    display: inline-block;
    border-radius: 50%;
}

.dots span.active {
    background-color: var(--primary);
}

        /* CTA Section */
        .cta {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.1;
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact {
            background-color: var(--white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .contact-item {
            display: grid;
            grid-template-columns: 60px 1fr;
            align-items: center;
            gap: 20px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .contact-details p, 
        .contact-details a {
            font-size: 16px;
            color: var(--text);
        }

        .contact-details a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        .contact-form {
            background-color: var(--light);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 163, 168, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--whatsapp);
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        /* Footer */
        .footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 5rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo img {
            height: 100px;
            margin-bottom: 1.5rem;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 0.9rem;
        }

        .newsletter-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: var(--secondary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            opacity: 0;
            animation-fill-mode: both;
        }

        .fadeInUp {
            animation-name: fadeInUp;
            animation-duration: 1s;
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .section {
                padding: 60px 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-img {
                order: -1;
            }

            .services-cards {
                flex-wrap: wrap;
                margin-top: -50px;
            }

            .service-card {
                max-width: 100%;
            }

            /* --- INÍCIO: AJUSTES MENU MOBILE --- */
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                gap: 0;
                transition: all 0.3s ease;
                z-index: 999;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .menu-widgets {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            
            .menu-widgets > li {
                width: 100%;
            }

            .menu-item {
                flex-direction: row;
              
                width: 100%;
                padding: 15px 20px;
                border-radius: 5px;
            }
            
            .menu-item-content {
                display: flex;
                align-items: center;
            }

            .menu-icon {
                margin-right: 15px;
                margin-bottom: 0;
                font-size: 20px;
            }

            .menu-text {
                font-size: 14px;
            }
            
            .menu-text .fa-chevron-down {
                transition: transform 0.3s ease;
            }
            
            .has-submenu.open > .menu-item .fa-chevron-down {
                 transform: rotate(180deg);
            }
            
            /* Ajustes do submenu mobile */
            .submenu {
                display: none;
                position: static;
                width: 100%;
                box-shadow: none;
                border-top: none;
                border-radius: 0;
                background-color: var(--light);
                padding: 0 0 0 40px;
                min-width: unset;
            }

            .submenu li a {
                padding: 10px 20px;
                font-size: 13px;
            }
            /* --- FIM: AJUSTES MENU MOBILE --- */
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero {
                min-height: 600px;
            }

            .slider-controls {
                bottom: 3rem;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .contact-item {
                grid-template-columns: 50px 1fr;
                gap: 15px;
            }

            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-btns {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
            }

            .contact-item {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .contact-icon {
                margin: 0 auto 10px;
            }

            .social-links {
                justify-content: center;
            }
        } 
		
		/* Before After Section */
.before-after {
    margin: 50px 0;
}

.before-after-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 30px;
}

.before-after-item {
    text-align: center;
}

.before-after-item h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.before-after-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsivo para tablets e celulares */
@media (max-width: 1024px) {
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }

    .before-after-item {
        text-align: center; /* centraliza todo o conteúdo do item */
    }

    .before-after-image img {
        max-width: 100%; /* faz a imagem não ultrapassar o container */
        height: auto; /* mantém proporção */
        display: inline-block; /* ajuda a centralizar junto com text-align */
    }
}

        /* Benefits Section */
        .benefits {
            background-color: var(--light);
            padding: 60px 0;
            margin: 50px 0;
        }

        .benefits-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-right: 20px;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        /* FAQ Section */
        .faq {
            margin: 50px 0;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background-color: var(--light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
		 /* Breadcrumbs */
        .breadcrumbs {
            padding: 15px 0;
            background-color: var(--light);
            margin-top: 80px;
        }

        .breadcrumbs-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }

        .breadcrumbs-item {
            font-size: 0.9rem;
            color: var(--text);
        }

        .breadcrumbs-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--primary);
        }

        .breadcrumbs-link {
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .breadcrumbs-link:hover {
            color: var(--secondary);
            text-decoration: underline;
        }

        .breadcrumbs-current {
            color: var(--dark);
            font-weight: 600;
        }

        /* Content Section */
        .content-section {
            padding: 60px 0;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .content-title h1 {
            font-size: 2.5rem;
            color: var(--primary);
        }

       .content-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no desktop */
    gap: 30px;
    margin: 30px 0;
}

/* Centraliza o conteúdo de cada item */
.content-image {
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block; /* garante centralização */
}

/* Responsivo: telas menores que 768px (mobile) */
@media (max-width: 768px) {
    .content-image-grid {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
    }
}


        .content-text {
            margin-bottom: 40px;
        }

        .content-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .content-text strong {
            color: var(--primary);
        }