/* ============================================================
   landing.css — Design system da landing page MEUCT
   Paleta: teal escuro #0f4c5c / #123852, amarelo #f4c95d
   Tipografia: Inter + Segoe UI
   ============================================================ */

:root {
    --lp-ink:          #0f2030;
    --lp-ink-soft:     #4a6274;
    --lp-teal:         #0f4c5c;
    --lp-teal-light:   #1a6579;
    --lp-teal-dark:    #0a3340;
    --lp-yellow:       #f4c95d;
    --lp-yellow-dark:  #d9a832;
    --lp-white:        #ffffff;
    --lp-surface:      #f7fafc;
    --lp-surface-alt:  #edf2f7;
    --lp-border:       rgba(15, 76, 92, 0.12);
    --lp-shadow-sm:    0 2px 8px rgba(15,32,48,.08);
    --lp-shadow-md:    0 8px 32px rgba(15,32,48,.12);
    --lp-shadow-lg:    0 20px 60px rgba(15,32,48,.18);
    --lp-radius:       12px;
    --lp-radius-sm:    8px;
    --lp-transition:   0.22s ease;
    --lp-font:         'Inter', 'Segoe UI', Arial, sans-serif;
    --lp-max-w:        1160px;
    --lp-narrow-w:     700px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   CONTAINERS
   ============================================================ */
.lp-container {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.lp-container--narrow {
    max-width: var(--lp-narrow-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3 { line-height: 1.2; font-weight: 800; color: var(--lp-ink); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--lp-ink-soft); }

.lp-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lp-teal);
    background: rgba(15,76,92,.08);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.lp-kicker--light {
    color: var(--lp-yellow);
    background: rgba(244,201,93,.15);
}
.lp-highlight {
    color: var(--lp-yellow);
    position: relative;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.lp-section {
    padding: 88px 0;
}
.lp-section--alt {
    background: var(--lp-surface);
}
.lp-section--dark {
    background: var(--lp-teal-dark);
    color: var(--lp-white);
}
.lp-section--dark p { color: rgba(255,255,255,.75); }
.lp-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.lp-section__header h2 { margin-bottom: 12px; }
.lp-section__header p  { font-size: 1.05rem; }
.lp-section__header--light h2 { color: var(--lp-white); }

/* ============================================================
   BOTÕES
   ============================================================ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--lp-font);
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--lp-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--lp-transition);
    text-decoration: none;
    white-space: nowrap;
    padding: 12px 24px;
    line-height: 1;
}
.lp-btn--primary {
    background: var(--lp-yellow);
    color: var(--lp-teal-dark);
    border-color: var(--lp-yellow);
}
.lp-btn--primary:hover {
    background: var(--lp-yellow-dark);
    border-color: var(--lp-yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244,201,93,.4);
}
.lp-btn--ghost {
    background: transparent;
    color: var(--lp-teal);
    border-color: var(--lp-teal);
}
.lp-btn--ghost:hover {
    background: rgba(15,76,92,.06);
}
.lp-btn--outline {
    background: transparent;
    color: var(--lp-teal);
    border-color: var(--lp-teal);
}
.lp-btn--outline:hover {
    background: var(--lp-teal);
    color: var(--lp-white);
}
.lp-btn--outline-white {
    background: transparent;
    color: var(--lp-white);
    border-color: rgba(255,255,255,.4);
}
.lp-btn--outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--lp-white);
}
.lp-btn--sm  { padding: 8px 18px; font-size: .875rem; }
.lp-btn--lg  { padding: 16px 32px; font-size: 1.05rem; }
.lp-btn--block { width: 100%; }
.lp-btn--submit { margin-top: 8px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--lp-transition), box-shadow var(--lp-transition);
}
.lp-nav--scrolled {
    background: var(--lp-white);
    box-shadow: var(--lp-shadow-sm);
}
.lp-nav__inner {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.lp-nav__logo { display: flex; flex-direction: column; line-height: 1.1; }
.lp-nav__logo-mark { font-size: 1.4rem; font-weight: 900; color: var(--lp-teal); }
.lp-nav__logo-sub  { font-size: .65rem; color: var(--lp-ink-soft); letter-spacing: .06em; }
.lp-nav__links {
    display: flex;
    gap: 28px;
    margin-left: 16px;
    flex: 1;
}
.lp-nav__links a {
    font-size: .9rem;
    font-weight: 600;
    color: var(--lp-ink);
    transition: color var(--lp-transition);
}
.lp-nav__links a:hover { color: var(--lp-teal); }
.lp-nav__actions { display: flex; gap: 10px; margin-left: auto; }
.lp-nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.lp-nav__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lp-teal);
    border-radius: 2px;
    transition: var(--lp-transition);
}
.lp-nav__mobile { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
    position: relative;
    padding: 140px 0 88px;
    overflow: hidden;
    background: linear-gradient(160deg, #f7fafc 0%, #edf4f6 60%, #e0edf2 100%);
}
.lp-hero__bg-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(15,76,92,.07) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(244,201,93,.12) 0%, transparent 40%);
    pointer-events: none;
}
.lp-hero .lp-container { position: relative; text-align: center; }
.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15,76,92,.08);
    color: var(--lp-teal);
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
    border: 1px solid rgba(15,76,92,.12);
}
.lp-hero__badge i { color: var(--lp-yellow-dark); }
.lp-hero__headline {
    margin-bottom: 20px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.lp-hero__sub {
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 36px;
    color: var(--lp-ink-soft);
}
.lp-hero__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.lp-hero__trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .82rem;
    font-weight: 600;
    color: var(--lp-ink-soft);
}
.lp-hero__trust span { display: flex; align-items: center; gap: 6px; }
.lp-hero__trust i { color: var(--lp-teal); }

/* ============================================================
   STATS
   ============================================================ */
.lp-stats {
    background: var(--lp-teal);
    padding: 44px 0;
}
.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.lp-stats__num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--lp-yellow);
    line-height: 1.1;
}
.lp-stats__label {
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    display: block;
    margin-top: 4px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.lp-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-benefit-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px;
    transition: box-shadow var(--lp-transition), transform var(--lp-transition);
}
.lp-benefit-card:hover {
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-4px);
}
.lp-benefit-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(15,76,92,.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--lp-teal);
    margin-bottom: 16px;
}
.lp-benefit-card h3 { margin-bottom: 8px; }

/* ============================================================
   FEATURES
   ============================================================ */
.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lp-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--lp-white);
    border-radius: var(--lp-radius-sm);
    padding: 18px 20px;
    border: 1px solid var(--lp-border);
}
.lp-feature > i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(15,76,92,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--lp-teal);
    flex-shrink: 0;
}
.lp-feature div { display: flex; flex-direction: column; gap: 3px; }
.lp-feature strong { font-size: .9rem; color: var(--lp-ink); }
.lp-feature span   { font-size: .82rem; color: var(--lp-ink-soft); }

/* ============================================================
   AUDIENCE
   ============================================================ */
.lp-audience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.lp-audience-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 20px;
    text-align: center;
    transition: box-shadow var(--lp-transition);
}
.lp-audience-card:hover { box-shadow: var(--lp-shadow-md); }
.lp-audience-card__emoji { font-size: 2.4rem; margin-bottom: 12px; }
.lp-audience-card h3 { margin-bottom: 8px; font-size: 1rem; }
.lp-audience-card p  { font-size: .875rem; }

/* ============================================================
   STEPS
   ============================================================ */
.lp-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.lp-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 24px;
}
.lp-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lp-teal);
    color: var(--lp-yellow);
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.lp-step h3 { margin-bottom: 8px; }
.lp-step__arrow {
    align-self: flex-start;
    padding-top: 16px;
    font-size: 1.2rem;
    color: var(--lp-teal);
    opacity: .5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.lp-testimonial {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px;
}
.lp-testimonial--featured {
    border-color: var(--lp-teal);
    box-shadow: var(--lp-shadow-md);
    transform: scale(1.02);
}
.lp-testimonial__stars {
    color: var(--lp-yellow-dark);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.lp-testimonial p {
    font-size: .95rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--lp-ink);
}
.lp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-teal);
    color: var(--lp-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lp-testimonial__author strong { display: block; font-size: .9rem; }
.lp-testimonial__author span   { font-size: .78rem; color: var(--lp-ink-soft); }

/* ============================================================
   PLANS
   ============================================================ */
.lp-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.lp-plan-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--lp-radius);
    padding: 28px;
    position: relative;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}
.lp-plan-card:hover { transform: translateY(-4px); }
.lp-plan-card--featured {
    background: var(--lp-white);
    border-color: var(--lp-yellow);
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.lp-plan-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-yellow);
    color: var(--lp-teal-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
}
.lp-plan-card__header h3 {
    color: var(--lp-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.lp-plan-card--featured .lp-plan-card__header h3 { color: var(--lp-teal); }
.lp-plan-card__header p  { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 20px; }
.lp-plan-card--featured .lp-plan-card__header p { color: var(--lp-ink-soft); }
.lp-plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}
.lp-plan-card__price-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lp-yellow);
    line-height: 1;
}
.lp-plan-card--featured .lp-plan-card__price-val { color: var(--lp-teal); }
.lp-plan-card__price-period { font-size: .85rem; color: rgba(255,255,255,.6); }
.lp-plan-card--featured .lp-plan-card__price-period { color: var(--lp-ink-soft); }
.lp-plan-card__limits {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.lp-plan-card--featured .lp-plan-card__limits { border-bottom-color: var(--lp-border); }
.lp-plan-card__limits span {
    font-size: .8rem;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    gap: 5px;
}
.lp-plan-card--featured .lp-plan-card__limits span { color: var(--lp-ink-soft); }
.lp-plan-card__features {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.lp-plan-card__features li {
    font-size: .875rem;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.lp-plan-card--featured .lp-plan-card__features li { color: var(--lp-ink); }
.lp-plan-card__features li i { color: #4cde9e; margin-top: 3px; flex-shrink: 0; }
.lp-plan-card__features li.lp-plan-card__feature--no { opacity: .45; }
.lp-plan-card__features li.lp-plan-card__feature--no i { color: #f87171; }
.lp-plans__note {
    text-align: center;
    margin-top: 32px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================================
   FORM
   ============================================================ */
.lp-alert {
    border-radius: var(--lp-radius-sm);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: .9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.lp-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}
.lp-form { display: flex; flex-direction: column; gap: 20px; }
.lp-form__row { display: grid; gap: 20px; }
.lp-form__row--2 { grid-template-columns: 1fr 1fr; }
.lp-form__group { display: flex; flex-direction: column; gap: 6px; }
.lp-form__group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--lp-ink);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.lp-required { color: #dc2626; }
.lp-form__hint { font-size: .75rem; font-weight: 400; color: var(--lp-ink-soft); }
.lp-form__group input[type="text"],
.lp-form__group input[type="email"],
.lp-form__group input[type="tel"],
.lp-form__group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font);
    font-size: .9rem;
    color: var(--lp-ink);
    background: var(--lp-white);
    transition: border-color var(--lp-transition), box-shadow var(--lp-transition);
    outline: none;
}
.lp-form__group input:focus {
    border-color: var(--lp-teal);
    box-shadow: 0 0 0 3px rgba(15,76,92,.12);
}
.lp-form__pass-wrap { position: relative; }
.lp-form__pass-wrap input { padding-right: 44px; }
.lp-form__toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-ink-soft);
    padding: 4px;
    font-size: .9rem;
}
.lp-form__error {
    font-size: .78rem;
    color: #dc2626;
    min-height: 1em;
}
.lp-form__group--checkbox { gap: 8px; }
.lp-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: .875rem;
    color: var(--lp-ink-soft);
    line-height: 1.4;
}
.lp-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--lp-border);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--lp-teal);
}
.lp-checkbox a { color: var(--lp-teal); text-decoration: underline; }
.lp-form__disclaimer {
    text-align: center;
    font-size: .78rem;
    color: var(--lp-ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

/* Plan selector inside form */
.lp-form__plan-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.lp-plan-radio { cursor: pointer; }
.lp-plan-radio input[type="radio"] { display: none; }
.lp-plan-radio__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 12px;
    border: 2px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    transition: border-color var(--lp-transition), background var(--lp-transition);
    position: relative;
    text-align: center;
}
.lp-plan-radio input:checked + .lp-plan-radio__content {
    border-color: var(--lp-teal);
    background: rgba(15,76,92,.05);
}
.lp-plan-radio--featured .lp-plan-radio__content { border-color: var(--lp-teal); }
.lp-plan-radio__name  { font-size: .8rem; font-weight: 600; color: var(--lp-ink); }
.lp-plan-radio__price { font-size: 1rem; font-weight: 800; color: var(--lp-teal); }
.lp-plan-radio__price small { font-size: .68rem; font-weight: 400; color: var(--lp-ink-soft); }
.lp-plan-radio__badge {
    margin-top: 4px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: var(--lp-yellow);
    color: var(--lp-teal-dark);
    padding: 2px 8px;
    border-radius: 999px;
}

/* Honeypot — ocultar sem display:none para não chamar atenção de bots */
.lp-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq { display: flex; flex-direction: column; gap: 4px; }
.lp-faq__item {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
    background: var(--lp-white);
}
.lp-faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: var(--lp-font);
    font-size: .95rem;
    font-weight: 700;
    color: var(--lp-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background var(--lp-transition);
}
.lp-faq__question:hover { background: rgba(15,76,92,.04); }
.lp-faq__question i { transition: transform var(--lp-transition); flex-shrink: 0; color: var(--lp-teal); }
.lp-faq__item--open .lp-faq__question i { transform: rotate(180deg); }
.lp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.lp-faq__item--open .lp-faq__answer { max-height: 400px; }
.lp-faq__answer p {
    padding: 0 20px 18px;
    font-size: .9rem;
    color: var(--lp-ink-soft);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.lp-cta-final {
    background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-teal-light) 100%);
    padding: 88px 0;
    text-align: center;
}
.lp-cta-final h2 { color: var(--lp-white); margin-bottom: 12px; }
.lp-cta-final p  { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
    background: var(--lp-ink);
    color: rgba(255,255,255,.7);
    padding: 56px 0 24px;
}
.lp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.lp-footer__logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--lp-yellow);
    display: block;
    margin-bottom: 12px;
}
.lp-footer__brand p { font-size: .875rem; color: rgba(255,255,255,.55); }
.lp-footer__col h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--lp-white);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.lp-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-footer__col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--lp-transition); }
.lp-footer__col a:hover { color: var(--lp-yellow); }
.lp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
    font-size: .78rem;
    text-align: center;
    color: rgba(255,255,255,.35);
}

/* ============================================================
   TELA DE OBRIGADO (landing_obrigado.php)
   ============================================================ */
.lp-obrigado {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--lp-surface);
}
.lp-obrigado__card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
}
.lp-obrigado__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(15,76,92,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--lp-teal);
    margin: 0 auto 24px;
}
.lp-obrigado__card h1 { font-size: 1.7rem; margin-bottom: 10px; }
.lp-obrigado__card p  { color: var(--lp-ink-soft); margin-bottom: 0; }
.lp-obrigado__info {
    background: var(--lp-surface);
    border-radius: var(--lp-radius-sm);
    padding: 16px 20px;
    margin: 24px 0;
    text-align: left;
}
.lp-obrigado__info p { font-size: .875rem; margin: 4px 0; color: var(--lp-ink); }
.lp-obrigado__info strong { color: var(--lp-teal); }
.lp-obrigado__steps {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 28px;
}
.lp-obrigado__steps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .875rem;
    color: var(--lp-ink-soft);
}
.lp-obrigado__steps li i { color: var(--lp-teal); margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
    .lp-benefits__grid    { grid-template-columns: repeat(2, 1fr); }
    .lp-features__grid    { grid-template-columns: repeat(2, 1fr); }
    .lp-audience__grid    { grid-template-columns: repeat(2, 1fr); }
    .lp-plans__grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .lp-plan-card--featured { transform: none; }
    .lp-stats__grid       { grid-template-columns: repeat(2, 1fr); }
    .lp-footer__grid      { grid-template-columns: 1fr 1fr; }
    .lp-testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .lp-testimonial--featured { transform: none; }
}

@media (max-width: 768px) {
    .lp-section { padding: 60px 0; }
    .lp-nav__links { display: none; }
    .lp-nav__actions { display: none; }
    .lp-nav__mobile-toggle { display: flex; }
    .lp-nav__mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: var(--lp-white);
        border-top: 1px solid var(--lp-border);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .lp-nav__mobile--open { max-height: 480px; padding: 12px 0; }
    .lp-nav__mobile a {
        padding: 12px 24px;
        font-size: .95rem;
        font-weight: 600;
        color: var(--lp-ink);
        display: block;
    }
    .lp-nav__mobile .lp-btn {
        margin: 8px 24px 0;
        width: calc(100% - 48px);
    }
    .lp-hero { padding: 110px 0 60px; }
    .lp-hero__ctas { flex-direction: column; align-items: center; }
    .lp-hero__trust { flex-direction: column; align-items: center; gap: 10px; }
    .lp-form__row--2 { grid-template-columns: 1fr; }
    .lp-form__plan-selector { grid-template-columns: 1fr; }
    .lp-benefits__grid    { grid-template-columns: 1fr; }
    .lp-features__grid    { grid-template-columns: 1fr; }
    .lp-audience__grid    { grid-template-columns: 1fr 1fr; }
    .lp-steps { flex-direction: column; align-items: center; }
    .lp-step__arrow { display: none; }
    .lp-footer__grid { grid-template-columns: 1fr; }
    .lp-obrigado__card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .lp-audience__grid { grid-template-columns: 1fr; }
    .lp-stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
