/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #93C01E;
    --secondary-color: #000000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #7da719;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

section {
    padding: 80px 0;
}

/* Estilos para a seção hero melhorada */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.social-proof-badge {
    background: #fff;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    font-size: 14px;
}

.stars {
    color: #FFD700;
    margin-right: 10px;
    font-size: 16px;
}

.highlight-box {
    background: #fff;
    border-left: 4px solid #7DA719;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.highlight-box p {
    margin: 8px 0;
    color: #333;
}

.highlight-box i {
    color: #7DA719;
    margin-right: 10px;
}

.offer-timer {
    background: #d4edda;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 25px 0;
    border: 1px dashed #7DA719;
}

.offer-text {
    font-weight: 600;
    margin-bottom: 10px;
    color: #155724;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.timer-box {
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 70px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.timer-box span {
    font-size: 24px;
    font-weight: 700;
    color: #155724;
    display: block;
}

.timer-box small {
    font-size: 12px;
    color: #6c757d;
}

.discount-text {
    font-weight: 700;
    color: #155724;
    font-size: 18px;
}

.cta-container {
    margin: 30px 0;
    text-align: center;
}

.btn.pulse {
    animation: pulse 2s infinite;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
}

.risk-free {
    margin-top: 15px;
    font-size: 14px;
    color: #6c757d;
}

.risk-free i {
    color: #7DA719;
    margin-right: 5px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge-item {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-item i {
    color: #7DA719;
}

.hero-image {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(125, 167, 25, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
}

.badge-content span {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.badge-content small {
    font-size: 12px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    filter: brightness(1); /* garante que não fique escura */
    opacity: 1; /* garante visibilidade total */
}

/* efeito hover só no desktop */
@media (min-width: 993px) {
    .hero-image:hover img {
        transform: scale(1.03);
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-image img {
        filter: brightness(1.1) contrast(1.05); /* corrige aspecto "apagado" */
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* About Section - Com fundo verde #7DA719 */
.about {
    background-color: #7DA719; /* Cor de fundo adicionada */
    color: white; /* Cor do texto alterada para branco para melhor contraste */
    position: relative;
    overflow: hidden;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
    position: relative;
}

.about-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-top: 3px solid white; /* Alterado para branco para contrastar */
    border-left: 3px solid white; /* Alterado para branco para contrastar */
    opacity: 0.7;
}

.about-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid white; /* Alterado para branco para contrastar */
    border-right: 3px solid white; /* Alterado para branco para contrastar */
    opacity: 0.7;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.4s ease;
    transform-origin: center center;
    filter: brightness(0.95) contrast(1.05);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

/* Efeito de fundo decorativo ajustado para a nova cor */
.about::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        width: 80%;
        transform: none;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content::before,
    .about-content::after {
        display: none;
    }
}
/* Efeito de fundo decorativo */
.about::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        width: 80%;
        transform: none;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content::before,
    .about-content::after {
        display: none;
    }
}
/* Services Section - Versão Premium */
.services {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #030507 0%, #7DA719 100%);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%2393C01E" fill-opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    z-index: 0;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.services p.subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(147, 192, 30, 0.1) 100%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    left: 0;
    top: 0;
    transform: rotate(0deg);
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
}

.service-card:hover i {
    transform: rotate(15deg) scale(1.1);
    color: #7da719;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card:hover h3::after {
    width: 80px;
    background: #7da719;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.4s ease;
}

.service-card:hover p {
    color: #444;
}

/* Efeito de borda animada */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-color), #7da719) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .services {
        padding: 90px 0;
    }
    
    .services h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }
    
    .services h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 1.8rem;
    }
    
    .services p.subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Gallery Section */
.gallery {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8e8e8 100%);
}

.gallery h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 70px;
    padding: 0 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 300px;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Efeito de título flutuante */
.gallery-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    z-index: 2;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item:hover .gallery-caption {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .gallery {
        padding: 70px 0;
    }
    
    .gallery h2 {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 50px;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 0;
}

footer .container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about .container,
    .contact .container {
        flex-direction: column;
    }
    
    .hero-image {
        width: 100%;
        opacity: 0.3;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .menu ul.active {
        left: 0;
    }
    
    .menu li {
        margin: 20px 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .copyright {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
/* Header */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    color: rgb(7, 4, 4);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Seção Why Choose - Estilo Premium */
.why-choose {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

.section-title span {
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.content-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover::before {
    width: 6px;
}

.benefit-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

.carousel-container {
    flex: 1;
    position: sticky;
    top: 20px;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
}

.budget-button {
    display: block;
    margin-top: 30px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
    text-decoration: none;
}

.budget-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.4);
    background: var(--primary-color-dark);
}

/* Responsividade */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .carousel-container {
        width: 100%;
        order: -1;
        margin-bottom: 40px;
    }
    
    .image-carousel {
        height: 300px;
    }
    
    .benefit-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
    }
}

/* FAQ Section - Estilo Premium */
.faq-section {
    padding: 80px 0;
    background-color: #7DA719;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern-bg.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.faq-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: left;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.faq-answer-content {
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Estado ativo */
.faq-item.active .faq-question {
    background: rgba(var(--primary-color-rgb), 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
}
/* Seção de Orçamento - Estilo Premium */
.budget-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.budget-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(40,40,40,0.8) 0%, rgba(0,0,0,1) 70%);
    z-index: 1;
}

.budget-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.budget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.budget-text {
    flex: 1;
}

.budget-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.budget-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.6;
}

.budget-button {
    display: inline-block;
    padding: 18px 45px;
    background: #2ecc71; /* Verde vibrante */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    white-space: nowrap;
}

.budget-button:hover {
    background: #27ae60; /* Verde mais escuro no hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* Efeito de brilho no botão */
.budget-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.budget-button:hover::after {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .budget-content {
        flex-direction: column;
        text-align: center;
    }
    
    .budget-text {
        margin-bottom: 30px;
    }
    
    .budget-title {
        font-size: 2.2rem;
    }
    
    .budget-subtitle {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .budget-title {
        font-size: 1.8rem;
    }
    
    .budget-subtitle {
        font-size: 1rem;
    }
    
    .budget-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Seção Nosso Compromisso - Design em Triângulo */
.commitment-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(30,30,30,0.8) 0%, rgba(0,0,0,1) 70%);
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.commitment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

@media (min-width: 992px) {
    .commitment-content {
        flex-direction: row;
        align-items: center;
    }
}

.commitment-text {
    flex: 1;
    order: 1;
}

@media (min-width: 992px) {
    .commitment-text {
        order: 0;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        text-align: left;
        font-size: 3rem;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #2ecc71;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .section-title::after {
        margin: 20px 0;
    }
}

.commitment-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .commitment-description {
        text-align: left;
    }
}

.commitment-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2ecc71;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    margin: 30px auto 0;
    text-align: center;
    width: fit-content;
}

@media (min-width: 768px) {
    .commitment-button {
        margin: 30px 0 0;
    }
}

.commitment-button:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

/* Layout Triangular dos Círculos */
.triangle-image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    margin: 0 auto;
    order: 0;
}

@media (min-width: 992px) {
    .triangle-image-stack {
        order: 1;
        flex: 1;
        height: 400px;
    }
}

.circle-img {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #2ecc71;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .circle-img {
        width: 220px;
        height: 220px;
    }
}

@media (min-width: 992px) {
    .circle-img {
        width: 250px;
        height: 250px;
    }
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.circle-img:hover img {
    transform: scale(1.1);
}

/* Posicionamento em Triângulo */
.img-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.img-2 {
    bottom: 20px;
    left: 10%;
    z-index: 2;
}

.img-3 {
    bottom: 20px;
    right: 10%;
    z-index: 1;
}

/* Efeitos de Hover */
.img-1:hover {
    transform: translateX(-50%) scale(1.05);
}

.img-2:hover {
    transform: scale(1.05);
}

.img-3:hover {
    transform: scale(1.05);
}

/* Ajustes para telas pequenas */
@media (max-width: 576px) {
    .triangle-image-stack {
        height: 300px;
    }
    
    .circle-img {
        width: 160px;
        height: 160px;
    }
    
    .img-2 {
        left: 5%;
    }
    
    .img-3 {
        right: 5%;
    }
}
@media (max-width: 768px) {
  .hero-image,
  .hero-image img {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background: none !important;
    position: static !important;
    z-index: 1 !important;
  }

  .hero-image::before,
  .hero-image::after {
    content: none !important;
    display: none !important;
    background: none !important;
    opacity: 0 !important;
  }

  .hero {
    background: none !important;
  }

  body,
  html {
    background: none !important;
  }
}
/* Seção de Localização */
.location {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

.location .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.location .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.location .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.location-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.map-container {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.location-btn {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 15px;
    background-color: #25D366;
}

.location-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 992px) {
    .location-content {
        flex-direction: column;
    }
    
    .map-container {
        width: 100%;
        height: 400px;
    }
    
    .location-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .location-btn {
        grid-column: span 1;
    }
    
    .location .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .location {
        padding: 60px 0;
    }
    
    .map-container {
        height: 300px;
    }
}