/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Benefits Section */
.benefits-section {
    padding: 0;
    background: transparent;
    margin: -100px 15px -100px;
    position: relative;
    z-index: 10;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    background: white;
    padding: 30px 10px 40px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card:last-child {
    border-right: none;
}

.benefit-card:nth-child(1) {
    background: #f8f9fa;
}

.benefit-card:nth-child(2) {
    background: var(--accent-green);
    color: white;
}

.benefit-card:nth-child(3) {
    background: var(--primary-blue);
    color: white;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:nth-child(1) .benefit-icon {
    background: var(--accent-green);
    color: white;
}

.benefit-card:nth-child(2) .benefit-icon,
.benefit-card:nth-child(3) .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.benefit-icon svg {
    width: 23px;
    height: 23px;
}

.benefit-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 0.65rem;
    line-height: 1.4;
    opacity: 0.9;
}

.benefit-card:nth-child(1) .benefit-description {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Responsive adjustments for benefits */
@media (max-width: 748px) {
    .benefits-section {
        margin: 0px 0px -120px;
        padding: 20px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .benefit-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .benefit-card:last-child {
        border-bottom: none;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #1f3a5c;
    --light-blue: #E8F4FD;
    --dark-blue: #1B5E7E;
    --accent-green: #2a9105;
    --light-green: #4fc3f7;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.nav-contact {
    display: flex;
    gap: 12px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background: var(--accent-green);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 58, 92, 0.85);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0px;
    padding-left: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.highlight {
    color: #22c55e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-price {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.price-highlight {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
    margin-bottom: 5px;
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Button Styles */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-btn.primary {
    background: var(--accent-green);
    color: var(--white);
}

.cta-btn.primary:hover {
    background: var(--light-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-btn.secondary {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-btn.secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-btn.large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.green {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Our Services Section */
.our-services {
    background: var(--white);
    padding: 150px 0 100px 0;
}

.our-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

.our-services .service-card {
    background: var(--white);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: block; /* Remove espaços em branco */
    margin: 0;
    padding: 0;
}

.our-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.our-services .service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image .service-icon {
    position: absolute;
    bottom: -25px;
    left: 0px;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.service-image .service-icon img {
    width: 50px;
    height: 50px;
    color: var(--white);
    filter: brightness(0) invert(1);
}

.service-content {
    padding: 30px;
}

.our-services .service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.our-services .service-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px !important;
    align-items: center;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-btn.primary {
    background: var(--accent-green);
    color: var(--white);
}

.cta-section .cta-btn.primary:hover {
    background: var(--light-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-section .cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Stars rating for benefits section */
.stars-rating {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.stars-rating i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Map Container Styles */
.map-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-container iframe:hover {
    transform: scale(1.02);
}

/* Footer */
/* Estilos específicos para cada div individual do rodapé */

/* Div 1: Seção da Marca/Logo */
#footer-brand-section {
    /* Para mover PARA CIMA: diminua o margin-top ou use valores negativos */
    /* Para mover PARA BAIXO: aumente o margin-top */
    margin-top: 0px; /* Ajuste este valor para mover verticalmente */
    margin-bottom: 0px; /* Controla o espaço abaixo desta seção */
}

.footer-brand-section {
    /* Controle adicional de posicionamento */
    transform: translateY(0px); /* Use valores negativos (-20px) para subir, positivos (20px) para descer */
}

/* Div 2: Seção de Contato */
#footer-contact-section {
    /* Para mover PARA CIMA: diminua o margin-top ou use valores negativos */
    /* Para mover PARA BAIXO: aumente o margin-top */
    margin-top: 0px; /* Ajuste este valor para mover verticalmente */
    margin-bottom: 0px; /* Controla o espaço abaixo desta seção */
}

.footer-contact-section {
    /* Controle adicional de posicionamento */
    transform: translateY(0px); /* Use valores negativos (-20px) para subir, positivos (20px) para descer */
}

/* Div 3: Seção do Mapa */
#footer-map-section {
    /* Para mover PARA CIMA: diminua o margin-top ou use valores negativos */
    /* Para mover PARA BAIXO: aumente o margin-top */
    margin-top: 0px; /* Ajuste este valor para mover verticalmente */
    margin-bottom: 0px; /* Controla o espaço abaixo desta seção */
}

.footer-map-section {
    /* Controle adicional de posicionamento */
    transform: translateY(0px); /* Use valores negativos (-20px) para subir, positivos (20px) para descer */
}

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 10px 0px 0px;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.7fr 1.15fr 1.15fr;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 30px !important;
    align-items: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--white);
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #cbd5e1;
    justify-content: center;
}

.contact-info p:first-child {
    display: block;
    margin: 0 0 15px 0;
}

.contact-info i {
    color: #22c55e;
    width: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.schedule p {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #475569;
    color: #94a3b8;
    background-color: #0f172a;
    margin: 20px 0 0 0;
    width: 100%;
    position: relative;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Animation Overrides */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
    padding-top: 50px;
}

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}