/* ============================================
   BRSUL ELETROPOSTOS — Landing Page Premium2
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2DB84B;
    --green-dark: #1e9038;
    --green-light: #3dd860;
    --yellow: #F5D000;
    --yellow-dark: #d4b400;
    --dark: #0a0e14;
    --dark-2: #111820;
    --dark-3: #1a2332;
    --gray-1: #f8f9fa;
    --gray-2: #e9ecef;
    --gray-3: #6c757d;
    --white: #ffffff;
    --text: #1a2332;
    --text-light: #5a6577;
    --font: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-green: 0 8px 32px rgba(45,184,75,0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* === TYPOGRAPHY === */
.text-gradient {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-yellow { color: var(--yellow); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45,184,75,0.12);
    border: 1px solid rgba(45,184,75,0.25);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(45,184,75,0.5);
    background: linear-gradient(135deg, var(--green-light), var(--green));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10,14,20,0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo-img {
    height: 44px;
    width: auto;
    /* Mantém as cores originais da logo */
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover { color: var(--green); }

.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: var(--shadow-green);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,184,75,0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,14,20,0.92) 0%,
        rgba(10,14,20,0.75) 50%,
        rgba(10,14,20,0.6) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,208,0,0.15);
    border: 1px solid rgba(245,208,0,0.4);
    color: var(--yellow);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge-item i { color: var(--green); font-size: 1rem; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Card */
.hero-card-inner {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-card-header i { font-size: 1.3rem; }

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.hero-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
}

.hero-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45,184,75,0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}


/* ============================================
   SOBRE
   ============================================ */
.sobre {
    padding: 100px 0;
    background: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-images {
    position: relative;
}

.sobre-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #0d1a0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}

.sobre-img-main:hover img { transform: scale(1.03); }

.sobre-img-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    max-width: 200px;
}

.sobre-img-charger {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.sobre-badge-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}

.sobre-text {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.sobre-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sobre-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}

.sobre-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sobre-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
}


/* ============================================
   OPORTUNIDADE
   ============================================ */
.oportunidade {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.oportunidade-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.oportunidade-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oportunidade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,14,20,0.93) 0%,
        rgba(26,35,50,0.88) 100%
    );
}

.oportunidade-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.oportunidade-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.75;
}

.oportunidade-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.op-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.op-card:hover {
    background: rgba(45,184,75,0.12);
    border-color: rgba(45,184,75,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.op-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-green);
}

.op-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.op-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}


/* ============================================
   O MERCADO — barras de progresso dinâmicas
   ============================================ */
.mercado {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.mercado-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mercado-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    filter: brightness(0.35) saturate(0.6);
}

.mercado-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 18, 8, 0.96) 0%,
        rgba(10, 28, 15, 0.90) 55%,
        rgba(5, 18, 8, 0.92) 100%
    );
}

/* Grid 2 colunas */
.mercado-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ---- Coluna Esquerda ---- */
.mercado-bars-col .section-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    margin-bottom: 32px;
}

.mercado-subtitulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.02em;
}

.mercado-bars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mbar-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mbar-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.mbar-desc strong {
    color: var(--white);
    font-weight: 600;
}

/* Track da barra */
.mbar-track {
    position: relative;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 50px;
    overflow: hidden;
}

/* Fill animado */
.mbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 50px;
    width: 0%;                    /* começa em 0, animado por JS */
    transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 40px;
    overflow: hidden;
}

.mbar-green {
    background: linear-gradient(90deg, #1e9038 0%, #2DB84B 60%, #3dd860 100%);
    box-shadow: 0 0 18px rgba(45, 184, 75, 0.4);
}

.mbar-yellow {
    background: linear-gradient(90deg, #c9a900 0%, #F5D000 60%, #ffe44d 100%);
    box-shadow: 0 0 18px rgba(245, 208, 0, 0.35);
}

/* Percentual dentro da barra */
.mbar-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(0,0,0,0.7);
    padding: 0 14px 0 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease 1s;
}

.mbar-fill.animated .mbar-label { opacity: 1; }

/* Bolinha removida */
.mbar-ball {
    display: none;
}

/* ---- Coluna Direita ---- */
.mercado-card-main {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(45,184,75,0.2);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.mercado-card-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
}

.mercado-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin: 0 auto 14px;
    box-shadow: var(--shadow-green);
}

.mercado-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mercado-card-title span {
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Anel SVG de progresso */
.mercado-ring-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 28px;
}

.mercado-ring {
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}

.ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.07);
    stroke-width: 10;
}

.ring-progress {
    fill: none;
    stroke: url(#ringGradient);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mercado-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ring-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.ring-unit {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
}

.ring-caption {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    line-height: 1.3;
}

/* Mini stats */
.mercado-mini-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 16px 0;
}

.mini-stat {
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.mini-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.mini-val {
    display: inline;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.mini-suffix {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
}

.mini-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    line-height: 1.3;
}

/* CTA dentro do card */
.mercado-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
}

.mercado-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45,184,75,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .mercado-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .mercado-info-col {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mercado-mini-stats { gap: 0; }
    .mini-val { font-size: 1.1rem; }
}

/* ============================================
   PRODUTO
   ============================================ */
.produto {
    padding: 100px 0;
    background: var(--gray-1);
}

.produto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.produto-img {
    position: relative;
}

.produto-main-img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.produto-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.spec-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.spec-content h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.spec-content p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
}


/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
    padding: 100px 0;
    background: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.diferencial-card {
    background: var(--gray-1);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.diferencial-card:hover::before { transform: scaleX(1); }

.diferencial-card:hover {
    background: var(--white);
    border-color: rgba(45,184,75,0.2);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.diferencial-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(45,184,75,0.1), rgba(45,184,75,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--green);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.diferencial-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.diferencial-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}


/* ============================================
   NÚMEROS
   ============================================ */
.numeros {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.numeros-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
}

.numeros-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.numero-item {
    padding: 32px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.numero-item:last-child { border-right: none; }

.numero-val {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    display: inline-block;
}

.numero-suffix {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.numero-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    line-height: 1.4;
}


/* ============================================
   STEPS
   ============================================ */
.steps {
    padding: 100px 0;
    background: var(--gray-1);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.step-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(45,184,75,0.1);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-green);
}

.step-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 40px;
    flex-shrink: 0;
}


/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
    padding: 100px 0;
    background: var(--white);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.depoimento-card {
    background: var(--gray-1);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-2);
    transition: var(--transition);
    position: relative;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(45,184,75,0.1);
    line-height: 1;
}

.depoimento-card.featured {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
}

.depoimento-card:not(.featured):hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.depoimento-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.depoimento-stars i {
    color: var(--yellow);
    font-size: 0.9rem;
}

.depoimento-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento-card.featured p { color: rgba(255,255,255,0.85); }

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.depoimento-card.featured .author-avatar {
    background: rgba(255,255,255,0.2);
}

.depoimento-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.depoimento-card.featured .depoimento-author strong { color: var(--white); }

.depoimento-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.depoimento-card.featured .depoimento-author span { color: rgba(255,255,255,0.7); }


/* ============================================
   FORMULÁRIO
   ============================================ */
.formulario {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.formulario-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.form-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,14,20,0.97) 0%,
        rgba(26,35,50,0.92) 100%
    );
}

.formulario-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.formulario-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 36px;
    font-size: 1.02rem;
}

.form-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.form-info-item > i {
    width: 44px;
    height: 44px;
    background: rgba(45,184,75,0.15);
    border: 1px solid rgba(45,184,75,0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1rem;
    flex-shrink: 0;
}

.form-info-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.form-info-item span {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

/* Form Box */
.formulario-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.form-box-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    padding: 28px 32px;
    text-align: center;
}

.form-logo {
    height: 36px;
    margin: 0 auto 16px;
    filter: brightness(0) invert(1);
}

.form-box-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-box-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.main-form {
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full { margin-bottom: 16px; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper > i {
    position: absolute;
    left: 14px;
    color: var(--gray-3);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--gray-2);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--gray-1);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 80px;
    padding-top: 12px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45,184,75,0.08);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.form-check label {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-check label a {
    color: var(--green);
    font-weight: 600;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contato h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--green);
    padding-left: 6px;
}

.footer-contato-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contato-item i {
    color: var(--green);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contato-item span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.5;
}

.btn-whatsapp-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    border: none;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}

.btn-whatsapp-footer:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}

.footer-bottom .fa-heart {
    color: var(--green);
}


/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: fabPulse 3s ease infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,211,102,0.6);
}

.fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.8); }
}


/* ============================================
   WHATSAPP MODAL
   ============================================ */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 901;
    width: 340px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-modal.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.wmodal-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid var(--gray-2);
}

.wmodal-header {
    background: #075E54;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wmodal-avatar {
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.wmodal-header h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.wmodal-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.wmodal-status i {
    color: #25D366;
    font-size: 0.55rem;
    animation: statusBlink 2s ease infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.wmodal-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: var(--transition);
}

.wmodal-close:hover { color: var(--white); }

.wmodal-body {
    padding: 20px;
    background: #ECE5DD;
}

.wmodal-bubble {
    background: var(--white);
    border-radius: 0 12px 12px 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: relative;
}

.wmodal-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-right: 8px solid var(--white);
    border-bottom: 8px solid transparent;
}

.wmodal-bubble p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.55;
}

.wmodal-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.wmodal-field {
    margin-bottom: 12px;
}

.wmodal-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.wmodal-field .input-wrapper input {
    font-size: 0.88rem;
    padding: 10px 12px 10px 36px;
}

.wmodal-field .input-wrapper > i {
    font-size: 0.8rem;
    left: 12px;
}

.btn-wmodal-submit {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-wmodal-submit:hover {
    background: #1db954;
    transform: translateY(-2px);
}


/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-backdrop.show {
    opacity: 1;
    pointer-events: all;
}

.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 1101;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.show {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.success-modal-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90vw;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.success-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gray-1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: var(--transition);
}

.success-close:hover { background: var(--gray-2); }

.success-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-modal-inner h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-modal-inner p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 28px;
}


/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

[data-aos-delay="100"] { transition-delay: 0.1s !important; }
[data-aos-delay="150"] { transition-delay: 0.15s !important; }
[data-aos-delay="200"] { transition-delay: 0.2s !important; }
[data-aos-delay="250"] { transition-delay: 0.25s !important; }
[data-aos-delay="300"] { transition-delay: 0.3s !important; }
[data-aos-delay="350"] { transition-delay: 0.35s !important; }
[data-aos-delay="400"] { transition-delay: 0.4s !important; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-card { display: none; }
    .hero-content { text-align: center; }
    .hero-badges-row { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .sobre-img-badge { display: none; }
    .produto-grid { grid-template-columns: 1fr; }
    .produto-img { order: 2; }
    .produto-specs { order: 1; }
    .formulario-grid { grid-template-columns: 1fr; }
    .oportunidade-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .numeros-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { 
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }
    .nav.open { right: 0; }
    .nav a { font-size: 1.1rem; }
    .nav-toggle { display: flex; }

    .hero { padding: 100px 0 60px; }
    .steps-grid { flex-direction: column; }
    .step-arrow { display: none; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .depoimento-card.featured { transform: none; }
    .produto-specs { grid-template-columns: 1fr; }
    .oportunidade-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .numeros-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .whatsapp-modal { width: calc(100vw - 32px); right: 16px; bottom: 90px; }
    .numero-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .numero-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
    .main-form { padding: 24px 20px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .modelo-inner { grid-template-columns: 1fr; }
    .modelo-parcela .parcela-destaque { flex-direction: column; align-items: flex-start; }
}


/* ============================================
   SOBRE — imagem img3 (fundo escuro match)
   ============================================ */
.sobre-img-dark {
    background: #0d1a0f;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* consultor — coluna 4 fundo escuro como a imagem */
.formulario-box-col4 {
    background: #0d1f14;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
}

.formulario-box-col4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ============================================
   MODELO DE FRANQUIA
   ============================================ */
.modelo-franquia {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d1a0f 0%, #0a1a12 50%, #071510 100%);
    position: relative;
    overflow: hidden;
}

.modelo-franquia::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(45,184,75,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.modelo-franquia::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245,208,0,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.modelo-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
}

/* Left */
.modelo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45,184,75,0.12);
    border: 1px solid rgba(45,184,75,0.3);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.modelo-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
}

.modelo-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 28px;
}

.modelo-desc strong {
    color: var(--green);
    font-weight: 700;
}

.modelo-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.modelo-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
}

.modelo-perk i {
    color: var(--green);
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-modelo-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn-modelo-wpp:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

/* Right — Price Card */
.modelo-price-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(45,184,75,0.2);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.modelo-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
}

.modelo-price-top {
    text-align: center;
    margin-bottom: 24px;
}

.modelo-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.modelo-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.modelo-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

.modelo-value {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
}

.modelo-cents {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

.modelo-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 24px 0;
}

.modelo-parcela {
    text-align: center;
    margin-bottom: 28px;
}

.parcela-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.parcela-destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(245,208,0,0.08);
    border: 1px solid rgba(245,208,0,0.2);
    border-radius: var(--radius);
    padding: 18px 20px;
}

.parcela-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    flex-shrink: 0;
}

.parcela-valor {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.parcela-obs {
    display: block;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 2px;
}

.modelo-cta-wrap {
    text-align: center;
}

.modelo-cta-btn {
    font-size: 1rem !important;
    padding: 16px 24px !important;
}

.modelo-nota {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    margin-top: 10px;
    line-height: 1.4;
}


/* ============================================
   MODAIS LEGAIS
   ============================================ */
.legal-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 1101;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 90vw;
    max-width: 720px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.legal-modal.show {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.legal-modal-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.legal-modal-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-bottom: 2px solid var(--green);
}

.legal-modal-header h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
}

.legal-modal-close {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-close:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.legal-modal-body {
    padding: 32px 36px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.8;
    color: var(--text);
}

.legal-modal-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 24px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gray-2);
}

.legal-modal-body h4:first-child { margin-top: 0; }

.legal-modal-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-modal-body ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-modal-body ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.legal-modal-body strong {
    color: var(--text);
    font-weight: 600;
}

/* Responsive modelo */
@media (max-width: 1024px) {
    .modelo-inner { grid-template-columns: 1fr; gap: 48px; }
    .modelo-perks { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .modelo-perks { grid-template-columns: 1fr; }
    .legal-modal-body { padding: 24px 20px; }
}
