/* ============================================================
   MOVE! ENERGIA — JUROS ZERO LANDING PAGE
   Design System & Styles
   ============================================================ */

/* ===== BRAND TOKENS ===== */
:root {
    --purple-deep:   #2D0A65;
    --purple-dark:   #200F4C;
    --purple-mid:    #3A0B60;
    --purple-light:  #4A1A7A;
    --orange:        #FF871F;
    --orange-vivid:  #FF7F00;
    --orange-glow:   rgba(255,135,31,0.35);
    --white:         #FFFFFF;
    --lilac:         #CE87D9;
    --pink-light:    #E19ECB;
    --pink-soft:     #F4B9F6;
    --green-success: #4ade80;
    --yellow-warn:   #fbbf24;
    --red-error:     #f87171;
    --text-muted:    rgba(255,255,255,0.65);
    --text-subtle:   rgba(255,255,255,0.45);
    --card-bg:       rgba(255,255,255,0.06);
    --card-border:   rgba(255,255,255,0.12);
    --glass-bg:      rgba(255,255,255,0.05);
    --glass-border:  rgba(255,255,255,0.10);
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     20px;
    --radius-xl:     28px;
    --shadow-card:   0 8px 32px rgba(0,0,0,0.25);
    --shadow-glow:   0 0 60px rgba(255,135,31,0.15);
    --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--purple-deep);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(206,135,217,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 90% 80%,  rgba(255,135,31,0.10) 0%, transparent 60%),
        radial-gradient(circle at 10% 30%, rgba(58,11,96,0.5) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(32,15,76,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo-svg {
    width: 110px;
    flex-shrink: 0;
    transition: var(--transition);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--orange-glow);
}

.navbar-cta:hover {
    background: #ff9a3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--orange-glow);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,135,31,0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(206,135,217,0.10) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,135,31,0.15);
    border: 1px solid rgba(255,135,31,0.3);
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--orange);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15em;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: var(--transition);
    box-shadow: 0 8px 32px var(--orange-glow);
}

.btn-primary:hover {
    background: #ff9a3c;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,135,31,0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Hero Visual (right side) */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.2s both;
    perspective: 1000px;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s, border-color 0.5s;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-card);
}

.hero-card:hover {
    transform: rotateY(-8deg) rotateX(4deg) translateY(-5px);
    border-color: rgba(255,135,31,0.4);
    box-shadow: 0 24px 50px rgba(0,0,0,0.35), 0 0 30px rgba(255,135,31,0.15);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--pink-soft), var(--lilac));
}

.hero-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,135,31,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-icon {
    transform: translateZ(20px) scale(1.05);
}

.hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3em;
    color: var(--white);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-title {
    transform: translateZ(10px);
}

.hero-card-text {
    font-size: 0.95em;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-stat {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s;
}

.hero-card:hover .hero-stat {
    transform: translateZ(15px);
    background: rgba(255,255,255,0.08);
}

.hero-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5em;
    color: var(--orange);
}

.hero-stat-label {
    font-size: 0.72em;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
    padding: 32px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(32,15,76,0.4);
}

.social-proof .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9em;
}

.proof-item .icon {
    font-size: 1.4em;
}

.proof-item strong {
    color: var(--white);
    font-weight: 700;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    position: relative;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05em;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

/* Connection line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--lilac));
    opacity: 0.3;
    z-index: 0;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,135,31,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange), var(--orange-vivid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2em;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px var(--orange-glow);
}

.step-icon {
    font-size: 2.4em;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.step-card p {
    font-size: 0.9em;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SIMULATOR SECTION ===== */
.simulator-section {
    position: relative;
}

.simulator-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,135,31,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.simulator-wrapper {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== SIMULATOR HEADER ===== */
.sim-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 40px 28px;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.sim-header::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,135,31,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.sim-header .logo-svg { flex-shrink: 0; width: 120px; }

.sim-header-text { flex: 1; }
.sim-header-text h2 {
    font-weight: 800;
    font-size: 1.55em;
    color: var(--white);
    line-height: 1.15;
}
.sim-header-text p {
    margin-top: 6px;
    font-size: 0.92em;
    color: var(--text-muted);
    font-weight: 400;
}

.badge-juros {
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75em;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ===== SIMULATOR FORM ===== */
.sim-form {
    background: linear-gradient(180deg, var(--purple-dark) 0%, #1a0840 100%);
    padding: 36px 40px 40px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lilac);
    margin-bottom: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.sim-form label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82em;
    color: var(--text-muted);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sim-form input,
.sim-form select {
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    font-size: 1em;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.72em;
    color: var(--orange);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.sim-form select {
    padding-right: 44px;
    cursor: pointer;
}

.sim-form select option {
    background: #200F4C;
    color: #fff;
}

.sim-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.sim-form input:focus,
.select-wrapper:focus-within select {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,135,31,0.08);
    box-shadow: 0 0 0 3px rgba(255,135,31,0.15);
}
    box-shadow: 0 0 0 3px rgba(255,135,31,0.15);
}

.sim-form input[readonly] {
    background: rgba(206,135,217,0.08);
    border-color: rgba(206,135,217,0.25);
    color: var(--lilac);
    cursor: default;
}

/* ===== CTA BUTTON (SIMULATOR) ===== */
.btn-calcular {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05em;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 6px 24px var(--orange-glow);
}

.btn-calcular:hover {
    background: #ff9a3c;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,135,31,0.45);
}

.btn-calcular:active {
    transform: translateY(0);
}

/* ===== RESULTADO ===== */
.resultado {
    margin-top: 28px;
    padding: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    display: none;
}

.resultado.ativo {
    display: block;
    animation: slideIn 0.45s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.resultado-titulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lilac);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
}

.resultado-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.res-cobertura-cell { grid-column: 1; }
.res-empty-cell     { grid-column: 2; }
.res-desconto-cell  { grid-column: 3; }

.resultado-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--orange);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.resultado-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 135, 31, 0.3);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.res-cobertura-cell,
.res-desconto-cell {
    border-top-color: var(--pink-soft);
    background: rgba(206,135,217,0.05);
}

.resultado-item label {
    font-size: 0.72em;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.resultado-item .valor {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35em;
    font-weight: 800;
    color: var(--white);
}

/* ===== STATUS BOX ===== */
.status-box {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05em;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.status-aprovado {
    background: rgba(39, 174, 96, 0.08);
    color: var(--green-success);
    border: 1.5px solid rgba(74, 222, 128, 0.35);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.05);
}

.status-parcial {
    background: rgba(251, 191, 36, 0.08);
    color: var(--yellow-warn);
    border: 1.5px solid rgba(251, 191, 36, 0.35);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.05);
}

.status-reprovado {
    background: rgba(248, 113, 113, 0.08);
    color: var(--red-error);
    border: 1.5px solid rgba(248, 113, 113, 0.35);
    box-shadow: 0 0 20px rgba(248, 113, 113, 0.05);
}

/* ===== BOTÃO CADASTRAR ===== */
.btn-cadastrar {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 15px;
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0em;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-cadastrar:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--orange-glow);
}

.btn-cadastrar:active {
    transform: translateY(0);
}

/* ===== FOOTER NOTE ===== */
.footer-nota {
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(244,185,246,0.07);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--pink-soft);
    font-size: 0.82em;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.footer-nota strong {
    color: var(--pink-soft);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,135,31,0.25);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,135,31,0.1);
    border: 1px solid rgba(255,135,31,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    margin-bottom: 18px;
}

.benefit-card h3 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.benefit-card p {
    font-size: 0.9em;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    position: relative;
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table th, 
.comparison-table td {
    transition: var(--transition);
}

.comparison-table thead th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 22px 24px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    text-align: left;
    border-bottom: 2px solid var(--glass-border);
}

/* Highlight Column 3 header (Juros Zero move!) */
.comparison-table thead th:last-child {
    color: var(--white);
    background: linear-gradient(180deg, rgba(255, 135, 31, 0.15) 0%, rgba(255, 135, 31, 0.08) 100%);
    border-bottom: 2px solid var(--orange);
    text-shadow: 0 0 10px rgba(255, 135, 31, 0.3);
    font-weight: 800;
}

.comparison-table tbody td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95em;
    color: var(--text-muted);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--white);
}

/* Highlight Column 3 cells */
.comparison-table tbody td:last-child {
    color: var(--green-success);
    font-weight: 700;
    background: rgba(255, 135, 31, 0.04);
    border-left: 1px solid rgba(255, 135, 31, 0.1);
    border-right: 1px solid rgba(255, 135, 31, 0.1);
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius-lg);
}

.comparison-table tbody tr {
    background: rgba(255,255,255,0.01);
}

.comparison-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.comparison-table tbody tr:hover td:last-child {
    background: rgba(255, 135, 31, 0.08);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.85em;
}

.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(248, 113, 113, 0.15);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.85em;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: rgba(255,135,31,0.25);
    background: rgba(255,255,255,0.06);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 135, 31, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--orange);
}

.faq-chevron {
    font-size: 1.2em;
    color: var(--orange);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg) scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92em;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA FINAL SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-dark) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,135,31,0.06) 0%, transparent 50%);
    animation: cta-pulse 6s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-card p {
    font-size: 1.05em;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.cta-card .btn-primary {
    position: relative;
    z-index: 2;
}

/* ===== FOOTER ===== */
.page-footer {
    padding: 40px 0 32px;
    border-top: 1px solid var(--glass-border);
    margin-top: 0;
}

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

.footer-logo .logo-svg {
    width: 100px;
    opacity: 0.7;
}

.footer-text {
    font-size: 0.82em;
    color: var(--text-subtle);
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 0.82em;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .navbar-cta span {
        display: none;
    }

    .sim-header {
        padding: 24px 20px 20px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .sim-form {
        padding: 24px 20px 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .resultado-grid {
        grid-template-columns: 1fr 1fr;
    }

    .res-cobertura-cell { grid-column: 1; }
    .res-empty-cell     { display: none; }
    .res-desconto-cell  { grid-column: 2; }

    .sim-header-text h2 {
        font-size: 1.25em;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid::before {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 56px 0;
    }

    .social-proof .container {
        gap: 24px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 14px;
        font-size: 0.82em;
    }
}
