/* Reset e Variáveis */
:root {
    --Green: #023324;
    --LightGreen: #8CC053;
    --Orange: #FF7A59;
    --White: #FFFFFF;
    --LightText: #555555;
    --HeaderHeight: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--LightText);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Estilos Gerais */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}
/* Adicione isso ao seu arquivo site.css */
.blog .section-title {
    color: white;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--Green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--LightGreen);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.diferenciais-cta .btn-primary {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--LightGreen), var(--Green));
    color: white;
    border: none;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(2, 51, 36, 0.2);
}

.diferenciais-cta .btn-primary:hover {
    transform: translateY(-3px);
}
.beneficios-cta .btn-primary {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--LightGreen), var(--Green));
    color: white;
    border: none;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(2, 51, 36, 0.2);
}

.beneficios-cta .btn-primary:hover {
    transform: translateY(-3px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--HeaderHeight);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    padding: 0 2.25%;
    transition: all 0.3s ease;
}

.header-container {
    width: 100%;
    max-width: 1680px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    width: 135px;
}

.logo {
    margin-top: 10px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.main-nav {
    position: relative;
    z-index: 100;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.08vw;
}

.nav-list li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px; /* Tamanho fixo em vez de 0.78vw */
    color: var(--Green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px; /* Valor fixo em vez de 0.073vw */
    display: flex;
    align-items: center;
    gap: 5px; /* Valor fixo em vez de 0.42vw */
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--LightGreen);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
    width: 100%;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--LightGreen);
}

.nav-list li a i {
    font-size: 10px; /* Tamanho fixo em vez de 0.52vw */
    transition: transform 0.3s ease;
}

.nav-list li a:hover i {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-contact {
    background: var(--Green) !important; /* Cor verde escura isolada */
    color: white !important;
    border: none;
    border-radius: 150px;
    padding: 15px 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(2, 51, 36, 0.2);
}

.btn-contact:hover {
    background: #01281b !important; /* Tom mais escuro para hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 51, 36, 0.3);
}

.btn-contact:active {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    width: 100%;
    padding-top: calc(var(--HeaderHeight) + 30px);
    position: relative;
    background-color: white;
}

.hero-container {
    position: relative;
    width: 1800px;
    max-width: 94%;
    height: 832px;
    max-height: 43.33vw;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.green-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgb(0, 10, 4) 0%, rgba(2,51,36,0) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 3.33vw;
    line-height: 1.1;
    color: var(--White);
    margin-bottom: 1vw;
    text-align: left;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 3.33vw;
    line-height: 1.1;
    color: var(--LightGreen);
    margin-bottom: 2.5vw;
    text-align: left;
}

.hero-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.94vw;
    line-height: 1.44;
    color: var(--White);
    margin-bottom: 1.82vw;
    text-align: left;
    max-width: 80%;
}

.hero-button {
    display: inline-flex;
    height: 2.81vw;
    padding: 0 1.46vw;
    align-items: center;
    gap: 0.63vw;
    border-radius: 999px;
    border: 0.052vw solid var(--White);
    background: transparent;
    color: var(--White);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.73vw;
    letter-spacing: 0.026vw;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--LightGreen);
    transition: width 0.3s ease;
    z-index: -1;
}

.hero-button:hover::before {
    width: 100%;
}

/* Efeito Typewriter */
.hero-title::after,
.hero-subtitle::after {
    animation: blink 1s step-end infinite;
    opacity: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.finished::after {
    display: none;
}

/* Objetivo Section */
.objetivo {
    background-color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.objetivo .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.objetivo-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.objetivo::before,
.objetivo::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 400px;
    background-image: url('assets/images/Vector.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.objetivo::before {
    left: 0;
    top: 61%;
    transform: translateY(-50%) rotate(180deg);
}

.objetivo::after {
    right: 0;
    top: 39%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .objetivo::before,
    .objetivo::after {
        display: none;
    }
}

/* Soluções Section - Atualizada */
.solucoes {
    background-color: #f5faf0;
    position: relative;
}

.solutions-tabs {
    margin-top: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(2, 51, 36, 0.1);
}

.tab-button {
    flex: 1;
    min-width: 120px;
    padding: 15px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--LightText);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 8px;
    margin: 5px;
}

.tab-button:hover {
    color: var(--Green);
    background: rgba(140, 192, 83, 0.1);
}

.tab-button.active {
    color: var(--Green);
    border-bottom-color: var(--LightGreen);
    background: rgba(140, 192, 83, 0.05);
    border-radius: 8px 8px 0 0;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.solution-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 51, 36, 0.05);
    text-align: center;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(140, 192, 83, 0.3);
}

.solution-icon {
    font-size: 24px;
    color: var(--LightGreen);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    background: rgba(140, 192, 83, 0.1);
}

.solution-item:hover .solution-icon {
    background: rgba(2, 51, 36, 0.1);
    transform: scale(1.1);
}

.solution-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--Green);
    margin-bottom: 10px;
}

.solution-description {
    font-size: 14px;
    color: var(--LightText);
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.solutions-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-solutions {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px; /* Bordas completamente redondas */
    background: linear-gradient(135deg, var(--LightGreen), var(--Green));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(2, 51, 36, 0.2);
}

.btn-solutions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 51, 36, 0.3);
}


/* Partners Section */
.partners-section {
    padding: 10px 2.25%;
    background: #F9F9F9;
    text-align: center;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
}

.partners-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: calc(250px * 12);
    will-change: transform;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* Diferenciais Section - Atualizada */
.diferenciais-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.diferenciais-content {
    flex: 1;
    padding-right: 40px;
}

.diferenciais-image {
    flex: 1;
    position: relative;
}

.diferenciais-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.diferenciais-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--LightText);
    margin-bottom: 30px;
}

.diferenciais-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* No seu CSS existente, modifique a classe .diferencial-item */
.diferencial-item {
    display: flex;
    align-items: flex-start; /* Alinha no topo */
    gap: 12px;
    font-size: 16px;
    color: var(--Green);
    text-align: left;
}

.diferencial-item i {
    color: var(--LightGreen);
    font-size: 20px;
}

.diferenciais-footer {
    margin-top: 30px;
    font-style: italic;
    color: var(--LightText);
}

.diferenciais-footer strong {
    color: var(--Green);
}

@media (max-width: 992px) {
    .diferenciais-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .diferenciais-content {
        padding-right: 0;
        order: 1;
    }
    
    .diferenciais-image {
        order: 2;
        width: 100%;
    }
    
    .tab-button.active {
        border-radius: 8px 0 0 8px;
    }
    .solucoes {
        text-align: center;
    }

}

@media (max-width: 576px) {
    .diferencial-item {
        font-size: 15px;
    }
    
    .diferenciais-text {
        font-size: 16px;
    }
}

/* FAQ Section */
.faq {
    background-color: #f5faf0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--Green);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--LightGreen);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* CTA Section */
.cta {
    background-color: white;
    color: var(--Green);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(2, 51, 36, 0.1);
    border-bottom: 1px solid rgba(2, 51, 36, 0.1);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--Green);
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--LightText);
    line-height: 1.6;
}

.btn-cta {
    background: linear-gradient(135deg, var(--LightGreen), var(--Green));
    color: white;
    border-radius: 999px;
    padding: 15px 30px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(2, 51, 36, 0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 51, 36, 0.3);
}



/* Footer */
.footer {
    background-color: #023324;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
}

.footer-bottom {
    padding: 25px 2.25%;
    text-align: center;
}

.footer-bottom-container {
    max-width: 1100px;
    margin: 0 auto;
}

.copyright {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.7;
    color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}


/* Responsividade */
@media (max-width: 1200px) {
    .hero-title, .hero-subtitle {
        font-size: 3.5vw;
    }
    
    .hero-button {
        height: 3.5vw;
        font-size: 1vw;
    }
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
    
    .diferenciais-list {
        grid-template-columns: 1fr;
    }

    .hero-container {
        height: 85vw;
        max-height: none;
        aspect-ratio: 16/9;
    }

    .hero-content {
        width: 60%;
        left: 5%;
        top: 55%;
        text-align: left;
    }

    .hero-title, .hero-subtitle {
        font-size: 4vw;
    }

    .hero-text, .hero-button {
        font-size: 1.5vw;
    }
    
    .hero-button {
        height: 4.5vw;
        font-size: 1.5vw;
    }
    
    .partners-track {
        gap: 40px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: left;
        border-bottom: 1px solid rgba(2, 51, 36, 0.1);
        border-left: 3px solid transparent;
    }
    
    .tab-button.active {
        border-left-color: var(--LightGreen);
        border-bottom-color: rgba(2, 51, 36, 0.1);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .footer-top-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-divider {
        width: 80%;
        height: 1px;
        margin: 15px auto;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }

    .cta-title {
        font-size: 30px;
    }

    .hero-content {
        width: 80%;
        left: 10%;
        top: 55%;
        text-align: left;
    }

    .hero-title, .hero-subtitle {
        font-size: 5vw;
    }

    .hero-text, .hero-button {
        font-size: 2vw;
    }
    
    .hero-button {
        height: 8vw;
        font-size: 2vw;
        padding: 0 3vw;
    }
    
    .partner-logo {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main-container {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .btn-primary, .btn-cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-content {
        width: 90%;
        left: 5%;
        text-align: left;
        top: 55%;
    }

    .hero-title, .hero-subtitle {
        font-size: 6vw;
        white-space: normal;
    }

    .hero-text, .hero-button {
        font-size: 3vw;
    }
    
    .hero-button {
        height: 48px;
        font-size: 12px;
        padding: 0 4vw;
        min-width: 50%;
        max-width: 90%;
        margin: 0 auto;
    }

    .green-overlay {
        width: 100%;
        opacity: 0.9;
    }
    
    .partner-logo {
        height: 30px;
    }
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--Green);
    font-size: 24px;
    cursor: pointer;
    z-index: 101;
    padding: 10px;
}

/* Estilos para mobile */
@media (max-width: 992px) {
    .header {
        position: relative;
    }
    
    .header-container {
        flex-wrap: wrap;
        padding: 15px 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 1;
        margin-left: auto;
    }
    
    .logo-container {
        order: 0;
        width: 100px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        position: absolute;
        left: 0;
        top: 100%;
        background: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        max-height: 500px;
        padding: 20px 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .nav-list li a {
        font-size: 16px;
        padding: 10px 15px;
        justify-content: space-between;
        color: var(--Green);
    }
    
    .nav-list li a:hover {
        color: var(--LightGreen);
    }
    
    .nav-list li a i {
        font-size: 12px;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .btn-contact {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo-container {
        width: 90px;
    }
    
    .main-nav.active {
        padding: 15px 0;
    }
    
    .nav-list li a {
        font-size: 15px;
    }
}

/* Adicione ao seu styles.css */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.menu-open::before {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 993px) {
    body.menu-open::before {
        display: none;
    }
}

/* Benefícios Section */
.beneficios {
    background-color: white;
    text-align: center;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.beneficio-item {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.beneficio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: rgba(140, 192, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.beneficio-icon i {
    font-size: 32px;
    color: var(--LightGreen);
}

.beneficio-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--Green);
    margin-bottom: 15px;
}

.beneficio-item p {
    font-size: 16px;
    color: var(--LightText);
    line-height: 1.6;
    margin: 0;
}

.beneficios-intro {
    font-size: 18px;
    color: var(--LightText);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .beneficios-intro {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beneficio-item {
        padding: 30px 20px;
    }
    
    .beneficio-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .beneficio-icon i {
        font-size: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Substitua a classe .blog existente por esta */
.blog {
    width: 100%;
    background: #023324 no-repeat center center;
    background-size: cover;
    border-radius: 50px;
    padding: 80px 2.25%;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 50px auto;
    max-width: 94%;
}


.blog .container {
    position: relative;
    z-index: 2;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.blog-post {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.post-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--LightGreen);
    color: var(--White);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--Green);
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 16px;
    color: var(--LightText);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--LightGreen);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--Green);
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    margin-top: 60px;
    text-align: center;
}

/* Efeito hover */
.blog-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Efeito de transição para o ícone */
.blog-cta .btn-primary i {
    transition: transform 0.3s ease;
}

.blog-cta .btn-primary:hover i {
    transform: translateX(5px);
}

.blog-cta .btn-primary {
    background: transparent;
    color: var(--White);
    border: 2px solid var(--White);
    border-radius: 999px;
    padding: 15px 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



/* Responsividade do Blog */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .post-image-container {
        height: 180px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 18px;
    }
    
    .post-excerpt {
        font-size: 15px;
    }
}
/* Plans Section */
.plans {
    background-color: #f5faf0;
    text-align: center;
}

.plans-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px; /* Aumentado o padding vertical de 30px */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    text-align: left; /* Garante alinhamento geral à esquerda */
}

.plan-card.featured {
    border: 1px solid #8CC053;
    transform: translateY(-10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #8CC053;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.9; }
    100% { opacity: 0.6; }
}

.plan-title {
    color: #023324;
    font-size: 26px; /* Aumentado de 24px */
    font-weight: 800; /* Mais pesado (era 700) */
    margin-bottom: 10px;
    transition: color 0.3s ease;
    text-align: left; /* Alinhado à esquerda */
}

.plan-card:hover .plan-title {
    color: var(--LightGreen);
}

.plan-subtitle {
    color: #666;
    font-size: 17px; /* Aumentado de 16px */
    font-weight: 600; /* Mais pesado (era normal) */
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left; /* Alinhado à esquerda */
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
    text-align: left; /* Alinhado à esquerda */
}

.plan-features li {
    padding: 10px 0; /* Aumentado de 8px */
    display: flex;
    align-items: center;
    color: #333;
    font-size: 16px; /* Aumentado de 15px */
    font-weight: 500; /* Mais pesado (era normal) */
    transition: color 0.3s ease;
}

.plan-card:hover .plan-features li {
    color: #555;
}

.plan-features i {
    color: #8CC053;
    margin-right: 12px; /* Aumentado de 10px */
    font-size: 16px; /* Aumentado de 14px */
    font-weight: 600; /* Ícone mais pesado */
}

.plan-button-container {
    margin-top: auto;
    padding-top: 20px;
}

.plan-button {
    width: 100%;
    padding: 15px;
    background-color: #023324;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans';
}

.plan-button:hover {
    background-color: #034a30;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.plan-button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .plans-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .plan-card.featured {
        transform: none;
    }
}

@media (max-width: 576px) {
    .plans {
        padding: 60px 15px;
    }
    
    .plan-card {
        padding: 30px 25px; /* Ajuste proporcional para mobile */
    }
    
    .plan-title {
        font-size: 22px; /* Tamanho reduzido para mobile */
    }
    
    .plan-subtitle {
        font-size: 15px; /* Tamanho reduzido para mobile */
    }
    
    .plan-features li {
        font-size: 14px; /* Tamanho reduzido para mobile */
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgba(140, 192, 83, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--LightGreen);
}


.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--LightGreen);
}

.client-logo {
    width: 80px;
    height: 40px;
    margin-bottom: 10px;
}


.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
}
.client-details {
    text-align: left;
    flex-grow: 1;
}

.client-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--Green);
    margin-bottom: 5px;
}

client-business {
    font-size: 14px;
    color: var(--LightText);
    margin-bottom: 8px;
}

.rating {
    color: #FFC107;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--LightText);
    position: relative;
    padding-top: 15px;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: rgba(140, 192, 83, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 80px;
}

.video-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--Green);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.video-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--LightGreen);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

/* Estilo para quando o vídeo está pausado */
.video-wrapper:not(.playing) video {
    filter: brightness(0.9);
}


/* Efeito de hover no wrapper */
.video-wrapper:hover:not(.playing) {
    box-shadow: inset 0 0 0 3px var(--LightGreen);
}

/* Estilo para o botão de play quando hover */
.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: white;
    box-shadow: 0 0 0 3px var(--LightGreen);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--Green);
    text-align: center;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

      .testimonial-card {
        padding: 25px;
    }
    
    .client-logo {
        width: 70px;
        height: 35px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .video-section-title {
        font-size: 24px;
    }
}

.testimonial-card.video-card {
    padding: 0;
    overflow: hidden;
}

.testimonial-card .video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.testimonial-card .video-wrapper video,
.testimonial-card .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    display: block;
    background: #000;
}

.testimonial-card .video-iframe iframe {
    width: 100%;
    height: 100%;
}


/* Ajuste para manter consistência visual */
.testimonial-card.video-card .client-info {
    padding: 20px;
    margin-top: auto;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button i {
    color: var(--LightGreen);
    font-size: 24px;
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: white;
}

/* When video is playing */
.video-wrapper.playing .play-button {
    opacity: 0;
    pointer-events: none;
}



/* Video thumbnail overlay */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}