:root {
    --azul-primario: #0054a6;
    --azul-escuro: #003366;
    --azul-claro: #e8f1fa;
    --azul-medio: #1a75c7;
    --laranja: #f7941d;
    --verde: #27ae60;
    --cinza-claro: #f5f7fa;
    --cinza-texto: #555;
    --branco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--azul-escuro);
    color: #fff;
    font-size: 0.82rem;
    padding: 6px 0;
}

.topbar a {
    color: #ccdcef;
    text-decoration: none;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--laranja);
}

.topbar i {
    margin-right: 5px;
    color: var(--laranja);
}

/* ===== NAVBAR ===== */
.navbar-main {
    background: var(--branco);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}

.navbar-main .navbar-brand img {
    height: 48px;
}

.navbar-main .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: var(--azul-escuro) !important;
    padding: .6rem 1rem !important;
    position: relative;
    transition: color .2s;
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--laranja);
    transition: all .3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 60%;
}

.navbar-main .nav-link:hover {
    color: var(--azul-medio) !important;
}

.btn-area-cliente {
    background: var(--azul-primario);
    color: #fff !important;
    border: none;
    border-radius: 25px;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: .85rem;
    transition: all .3s;
}

.btn-area-cliente:hover {
    background: var(--laranja);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 148, 29, .35);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-primario) 50%, var(--azul-medio) 100%);
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 148, 29, .1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--laranja);
    position: relative;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
}

.btn-hero {
    background: var(--laranja);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero:hover {
    background: #e8850e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 148, 29, .4);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    padding: 12px 32px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-card-mockup {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
}

.card-visual {
    background: linear-gradient(145deg, var(--azul-primario), var(--azul-escuro));
    border-radius: 18px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
    transform: rotate(-3deg);
    aspect-ratio: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-visual::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(247, 148, 29, .2);
    border-radius: 50%;
}

.card-visual::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.card-visual .card-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.card-visual .card-logo span {
    color: var(--laranja);
}

.card-visual .card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4a853, #c99a2e);
    border-radius: 6px;
    margin: 10px 0;
}

.card-visual .card-number {
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 500;
}

.card-visual .card-bottom {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    opacity: .8;
}

.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    font-size: .82rem;
    font-weight: 600;
    color: var(--azul-escuro);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i {
    margin-right: 6px;
}

.badge-discount {
    top: 10%;
    right: -5%;
}

.badge-discount i {
    color: var(--verde);
}

.badge-network {
    bottom: 15%;
    left: -8%;
    animation-delay: 1.5s;
}

.badge-network i {
    color: var(--laranja);
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--azul-escuro);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--cinza-texto);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.title-bar {
    width: 50px;
    height: 4px;
    background: var(--laranja);
    border-radius: 2px;
    margin: 0 auto 16px;
}

/* ===== PLANOS ===== */
.section-planos {
    padding: 90px 0;
    background: var(--cinza-claro);
}

.plano-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: all .4s;
    border: 2px solid rgba(0, 0, 0, .05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 84, 166, .12);
    border-color: var(--azul-primario);
}

.plano-card.destaque {
    border-color: var(--laranja);
    box-shadow: 0 10px 35px rgba(247, 148, 29, .15);
}

.plano-card.destaque::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--laranja);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    padding: 4px 36px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.plano-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-medio));
}

.plano-card.destaque .plano-icon {
    background: linear-gradient(135deg, var(--laranja), #e67e22);
}

.plano-card h4 {
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.plano-card .plano-desc {
    font-size: .85rem;
    color: var(--cinza-texto);
    margin-bottom: 18px;
}

.plano-preco-antigo {
    font-size: .95rem;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.plano-preco {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--azul-primario);
    line-height: 1.1;
}

.plano-card.destaque .plano-preco {
    color: var(--laranja);
}

.plano-preco small {
    font-size: .8rem;
    font-weight: 500;
    color: var(--cinza-texto);
}

.plano-preco-nota {
    font-size: .72rem;
    color: #aaa;
    margin-bottom: 18px;
}

.plano-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    text-align: left;
    flex-grow: 1;
}

.plano-features li {
    font-size: .85rem;
    color: var(--cinza-texto);
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-features li i {
    color: var(--verde);
    font-size: .75rem;
    min-width: 16px;
}

.btn-plano {
    display: inline-block;
    background: var(--azul-primario);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    transition: all .3s;
    text-decoration: none;
    margin-top: auto;
}

.btn-plano:hover {
    background: var(--azul-medio);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 84, 166, .3);
}

.plano-card.destaque .btn-plano {
    background: var(--laranja);
}

.plano-card.destaque .btn-plano:hover {
    background: #e8850e;
    box-shadow: 0 6px 18px rgba(247, 148, 29, .35);
}

.planos-notas {
    font-size: .75rem;
    color: #999;
    margin-top: 30px;
    line-height: 1.7;
}

/* ===== BENEFÍCIOS ===== */
.section-beneficios {
    padding: 90px 0;
    background: var(--cinza-claro);
}

.beneficio-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all .4s;
    border: 1px solid rgba(0, 0, 0, .04);
    height: 100%;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 84, 166, .1);
}

.beneficio-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #fff;
}

.beneficio-icon.icon-saude {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.beneficio-icon.icon-odonto {
    background: linear-gradient(135deg, var(--azul-medio), var(--azul-primario));
}

.beneficio-icon.icon-farmacia {
    background: linear-gradient(135deg, var(--verde), #1e8449);
}

.beneficio-icon.icon-educacao {
    background: linear-gradient(135deg, var(--laranja), #e67e22);
}

.beneficio-icon.icon-lazer {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.beneficio-icon.icon-alimentacao {
    background: linear-gradient(135deg, #e74c3c, #d35400);
}

.beneficio-card h5 {
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

.beneficio-card p {
    font-size: .9rem;
    color: var(--cinza-texto);
    line-height: 1.6;
}

/* ===== COMO FUNCIONA ===== */
.section-como-funciona {
    padding: 90px 0;
    background: var(--cinza-claro);
}

.step-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-medio));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(0, 84, 166, .25);
}

.step-card h5 {
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 8px;
}

.step-card p {
    font-size: .9rem;
    color: var(--cinza-texto);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -30px;
    font-size: 1.8rem;
    color: var(--laranja);
    opacity: .5;
}

/* ===== VANTAGENS ===== */
.section-vantagens {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-primario) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-vantagens::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .04), transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.section-vantagens .section-title {
    color: #fff;
}

.section-vantagens .section-subtitle {
    color: rgba(255, 255, 255, .7);
}

.section-vantagens .title-bar {
    background: var(--laranja);
}

.vantagem-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(255, 255, 255, .07);
    border-radius: 14px;
    transition: all .3s;
}

.vantagem-item:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateX(5px);
}

.vantagem-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--laranja);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.vantagem-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.vantagem-item p {
    font-size: .85rem;
    opacity: .8;
    margin: 0;
    line-height: 1.5;
}

/* ===== NÚMEROS ===== */
.section-numeros {
    padding: 70px 0;
    background: var(--cinza-claro);
}

.numero-item {
    text-align: center;
    padding: 20px;
}

.numero-item .num {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--azul-primario);
    line-height: 1;
}

.numero-item .num span {
    color: var(--laranja);
}

.numero-item p {
    font-size: .9rem;
    color: var(--cinza-texto);
    margin-top: 6px;
    font-weight: 500;
}

/* ===== PARCEIROS ===== */
.section-parceiros {
    padding: 80px 0;
    background: #fff;
}

.parceiro-logo {
    background: var(--cinza-claro);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transition: all .3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #aab;
    font-size: .85rem;
}

.parceiro-logo:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

/* ===== CTA ===== */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--laranja) 0%, #e67e22 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -150px;
    left: -100px;
}

.section-cta h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-cta p {
    font-size: 1.1rem;
    opacity: .9;
    max-width: 550px;
    margin: 0 auto 30px;
}

.btn-cta {
    background: var(--azul-escuro);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    background: var(--azul-primario);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, .4);
}

/* ===== DEPOIMENTOS ===== */
.section-depoimentos {
    padding: 90px 0;
    background: var(--cinza-claro);
}

.depoimento-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    height: 100%;
    position: relative;
}

.depoimento-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--azul-claro);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.depoimento-card p {
    font-size: .92rem;
    color: var(--cinza-texto);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimento-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-medio));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.depoimento-author h6 {
    font-weight: 700;
    color: var(--azul-escuro);
    margin: 0;
    font-size: .9rem;
}

.depoimento-author small {
    color: #999;
    font-size: .8rem;
}

.stars {
    color: var(--laranja);
    font-size: .85rem;
    margin-bottom: 12px;
}

/* ===== FAQ ===== */
.section-faq {
    padding: 90px 0;
    background: #fff;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, .06) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--azul-escuro);
    font-size: .95rem;
    padding: 18px 24px;
}

.accordion-button:not(.collapsed) {
    background: var(--azul-claro);
    color: var(--azul-primario);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: .9rem;
    color: var(--cinza-texto);
    line-height: 1.7;
    padding: 16px 24px 20px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--azul-escuro);
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 0;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

footer a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s;
    font-size: .88rem;
}

footer a:hover {
    color: var(--laranja);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li i {
    width: 20px;
    color: var(--laranja);
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: .82rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    margin-right: 8px;
    transition: all .3s;
}

.social-icons a:hover {
    background: var(--laranja);
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    transition: all .3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, .5);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero {
        padding: 70px 0 50px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-card-mockup {
        margin-top: 40px;
    }

    .step-connector {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-cta h2 {
        font-size: 1.6rem;
    }

    .numero-item .num {
        font-size: 2.2rem;
    }

    .floating-badge {
        display: none;
    }
}
