/* =========================================
   VNCRED — STYLE PRINCIPAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111111;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .35s;
    z-index: 999;
    background: transparent;
}

.logo img {
    height: 120px;
    width: auto;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: #111111;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: #f97316;
}

.btn-whatsapp {
    background: #0B6B3A;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    opacity: .9;
}


/* =========================================
   HERO
========================================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 60px 8%;
    background: #ffffff;
    gap: clamp(35px, 5vw, 70px);
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    min-height: 540px;
    border-radius: 25px;
    background: url("../images/hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.badge {
    display: inline-block;
    background: #e8f6ef;
    color: #0B6B3A;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.1;
    color: #111111;
    margin-bottom: 25px;
}

.hero p {
    font-size: 22px;
    color: #555555;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-whatsapp-outline {
    border: 2px solid #0B6B3A;
    color: #0B6B3A;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: bold;
    transition: .3s;
}

.btn-whatsapp-outline:hover {
    background: #0B6B3A;
    color: #ffffff;
}


/* =========================================
   SEÇÕES
========================================= */

section {
    padding: 90px 8%;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title span {
    color: #f97316;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    font-size: 42px;
    margin: 15px 0;
    color: #111111;
}

.section-title p {
    color: #666666;
    font-size: 18px;
}


/* =========================================
   CONVÊNIOS
========================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 32px;
    border: 1px solid #eeeeee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .3s ease;
}

.card:hover {
    transform: translateY(-8px);
    background: #0B6B3A;
    border-color: #0B6B3A;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #eef8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: .3s ease;
}

.card-icon span {
    font-size: 28px;
}

.card h3 {
    margin-bottom: 16px;
    font-size: 26px;
    font-weight: 800;
    color: #0B6B3A;
    transition: .3s ease;
}

.card p {
    color: #666666;
    line-height: 1.8;
    font-size: 16px;
    transition: .3s ease;
}

.card:hover h3 {
    color: #ffffff;
}

.card:hover p {
    color: rgba(255, 255, 255, .88);
}

.card:hover .card-icon {
    background: #ffffff;
}


/* =========================================
   BENEFÍCIOS
========================================= */

.beneficios {
    background: #f8fafc;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.beneficio-card {
    background: #ffffff;
    padding: 38px 32px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    background: #0B6B3A;
    border-color: #0B6B3A;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
}


/* ÍCONE */

.beneficio-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef8f3;
    border-radius: 14px;

    margin-bottom: 24px;

    transition: .3s ease;
}

.beneficio-icon span {
    font-size: 28px;
}


/* TÍTULO */

.beneficio-card h3 {
    color: #0B6B3A;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 14px;
    transition: .3s ease;
}


/* TEXTO */

.beneficio-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    transition: .3s ease;
}


/* HOVER */

.beneficio-card:hover .beneficio-icon {
    background: #ffffff;
}

.beneficio-card:hover h3 {
    color: #ffffff;
}

.beneficio-card:hover p {
    color: rgba(255, 255, 255, .88);
}


/* =========================================
   NÚMEROS
========================================= */

.numeros {
    background: #0B6B3A;
    color: #ffffff;
    padding: 70px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.numero-item h2 {
    font-size: 52px;
    margin-bottom: 10px;
    color: #ffffff;
}

.numero-item p {
    font-size: 18px;
    opacity: .9;
}


/* =========================================
   DEPOIMENTOS
========================================= */

.depoimentos {
    background: #ffffff;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.depoimento-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    background: #0B6B3A;
    border-color: #0B6B3A;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
}

.estrelas {
    color: #f97316;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    transition: .3s ease;
}

.depoimento-card p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    font-size: 16px;
    transition: .3s ease;
}

.depoimento-card strong {
    display: block;
    color: #0B6B3A;
    font-size: 17px;
    font-weight: 800;
    transition: .3s ease;
}


/* HOVER */

.depoimento-card:hover p {
    color: rgba(255, 255, 255, .9);
}

.depoimento-card:hover strong {
    color: #ffffff;
}

.depoimento-card:hover .estrelas {
    color: #ff9a4a;
}


/* =========================================
   FAQ
========================================= */

.faq {
    background: #f8fafc;
}

.faq-item {
    max-width: 900px;
    margin: 18px auto;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: #0B6B3A;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    border: none;
    background: #ffffff;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;
    font-size: 19px;
    font-weight: 800;
    color: #111111;

    transition: .3s ease;
}

.faq-question::after {
    content: "+";
    font-size: 28px;
    font-weight: 400;
    color: #0B6B3A;
    transition: .3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 28px 25px;
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}


/* FAQ ABERTO */

.faq-item.active {
    background: #0B6B3A;
    border-color: #0B6B3A;
}

.faq-item.active .faq-question {
    background: #0B6B3A;
    color: #ffffff;
}

.faq-item.active .faq-question::after {
    content: "−";
    color: #f97316;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    background: #0B6B3A;
}

.faq-item.active .faq-answer p {
    color: rgba(255, 255, 255, .88);
}

/* =========================================
   CTA FINAL
========================================= */

.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            #004d2d 0%,
            #00693d 50%,
            #004d2d 100%);
    color: #ffffff;
    text-align: center;
    padding: 95px 8%;
}

.cta::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 45px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
    left: -180px;
    bottom: -220px;
}

.cta::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
    right: -170px;
    bottom: -190px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #ff7417;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.cta-label span {
    width: 50px;
    height: 3px;
    background: #ff7417;
    display: block;
}

.cta h2 {
    color: #ffffff;
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta p {
    color: rgba(255, 255, 255, .88);
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 38px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #ff7417;
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    transition: .3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #ff812d;
}

.cta-whatsapp {
    font-size: 28px;
}

.cta-beneficios {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 45px;
}

.cta-beneficio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #ffffff;
}

.cta-icon {
    color: #ff7417;
    font-size: 24px;
}

.cta-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, .35);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #111111;
    color: #ffffff;
    padding: 70px 8% 30px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
}

.footer-left {
    padding-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e5e5e5;
}

.footer-company-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #eeeeee;
}

.footer-company-info p:last-child {
    border-bottom: none;
}

.footer-company-info strong {
    color: #ffffff;
}

.footer-icon {
    color: #ff7417;
    font-size: 22px;
    min-width: 28px;
}

.footer-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.footer-links a {
    color: #ffffff;
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 17px;
    transition: .3s;
}

.footer-links a:hover {
    color: #ff7417;
    padding-left: 5px;
}

.footer-social {
    margin-top: 35px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;
    border: 2px solid #ff7417;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}

.social-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    background: #ff7417;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #eeeeee;
}

/* =========================================
   WHATSAPP FLUTUANTE
========================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .20);
    z-index: 9999;
    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PÁGINAS JURÍDICAS
========================================= */

.legal-page {
    background: #f8fafc;
    color: #111111;
}

.legal-header {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.legal-logo img {
    height: 75px;
    width: auto;
}

.legal-back {
    background: #0B6B3A;
    color: #ffffff;
    padding: 13px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.legal-back:hover {
    background: #09572f;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 30px 90px;
}

.legal-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111111;
}

.legal-content>p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 35px;
}

.legal-content h2 {
    text-align: left;
    font-size: 25px;
    margin: 35px 0 12px;
    color: #0B6B3A;
}

.legal-content h2::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 25px;
    background: #f97316;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 3px;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

.legal-footer {
    background: #111111;
    color: #ffffff;
    padding: 30px 8%;
    text-align: center;
}

.legal-footer p {
    margin: 0;
    color: #dddddd;
}

@media (max-width: 768px) {

    .legal-header {
        padding: 15px 5%;
    }

    .legal-logo img {
        height: 55px;
    }

    .legal-back {
        padding: 10px 17px;
        font-size: 14px;
    }

    .legal-content {
        padding: 50px 5% 70px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 22px;
    }

    .legal-content p {
        font-size: 16px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .header {
        padding: 15px 5%;
        background: #ffffff !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    }

    .logo img {
        height: 50px;
    }

    .menu {
        display: none;
    }

    .btn-whatsapp {
        padding: 11px 18px;
        font-size: 14px;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 120px 5% 50px;
        gap: 40px;
    }

    .hero-text {
        width: 100%;
        text-align: center;
    }

    .badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        min-height: 400px;
        border-radius: 20px;
    }

    section {
        padding: 65px 5%;
    }

    section h2 {
        font-size: 30px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 16px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 30px 25px;
    }

    .cta {
        padding: 70px 5%;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p {
        font-size: 17px;
    }

    .cta-button {
        width: 100%;
        padding: 18px 25px;
        font-size: 18px;
    }

    .cta-beneficios {
        flex-direction: column;
        gap: 18px;
    }

    .cta-divider {
        display: none;
    }

    .cta-label span {
        width: 30px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .beneficio-card {
        padding: 30px;
    }

    .numeros {
        grid-template-columns: 1fr 1fr;
        padding: 55px 5%;
    }

    .numero-item h2 {
        font-size: 38px;
    }

    .numero-item p {
        font-size: 14px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px;
    }

    .footer {
        padding: 55px 5% 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-left {
        padding-right: 0;
        border-right: none;
    }

    .footer-logo img {
        height: 75px;
    }

    .footer-company-info p {
        align-items: flex-start;
        line-height: 1.6;
    }

    .footer-right h3 {
        font-size: 24px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float img {
        width: 34px;
        height: 34px;
    }

}