/* =============================================================================
   Zaptria LP2 — Standalone Styles (unificado)
   Paleta e padrão visual herdados da aplicação principal (verde-ciano moderno)
   ============================================================================= */

/* ===========================
   Variables (espelho do app)
   =========================== */

:root,
[data-bs-theme="light"] {
    --lp-primary: #0fbf9f;
    --lp-primary-rgb: 15, 191, 159;
    --lp-secondary: #0aa68b;
    --lp-dark: #101820;
    --lp-body-bg: #f3f7f6;
    --lp-body-color: #102a43;
    --lp-light: #f9fbfa;
    --lp-card-bg: #ffffff;
    --lp-border: #dde7e5;
    --lp-danger: #e5535f;
    --lp-text-muted: #4a6274;
    --lp-text-subtle: #6b8299;
    --lp-radius: 1.25rem;
    --lp-radius-sm: 0.9rem;
    --lp-shadow-soft: 0 14px 30px rgba(15, 42, 63, 0.08);
    --lp-shadow-subtle: 0 8px 22px rgba(15, 42, 63, 0.06);
    --lp-shadow-hover: 0 16px 36px rgba(15, 42, 63, 0.14);
    --lp-font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont,
        "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

[data-bs-theme="dark"] {
    --lp-primary: #24d1b0;
    --lp-primary-rgb: 36, 209, 176;
    --lp-secondary: #18b99a;
    --lp-dark: #050b10;
    --lp-body-bg: #050b10;
    --lp-body-color: #eef3f5;
    --lp-light: #0c141c;
    --lp-card-bg: #0c141c;
    --lp-border: #1b2833;
    --lp-danger: #f46b77;
    --lp-text-muted: #9ab0c2;
    --lp-text-subtle: #7a95aa;
    --lp-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
    --lp-shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.45);
    --lp-shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.8);
}

/* ===========================
   Reset / Base
   =========================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--lp-font-family);
    color: var(--lp-body-color);
    background-color: var(--lp-body-bg);
    margin: 0;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.2s ease, color 0.2s ease;
}

a {
    color: var(--lp-primary);
    text-decoration: none;
}

a:hover {
    color: var(--lp-secondary);
}

/* ===========================
   Navbar
   =========================== */

.lp-navbar {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--lp-shadow-subtle);
    padding-block: 0.6rem;
    z-index: 1030;
}

[data-bs-theme="dark"] .lp-navbar {
    background-color: rgba(5, 11, 16, 0.92);
    border-bottom: 1px solid var(--lp-border);
}

.lp-navbar .btn-primary {
    border-radius: 999px;
    font-weight: 500;
    border: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.lp-navbar .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Nav links */
.lp-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.lp-nav-link:hover {
    color: var(--lp-primary);
}

/* ===========================
   Buttons (LP-scoped)
   =========================== */

/* btn-primary — force LP palette in both themes */
.btn-primary,
.lp-navbar .btn-primary {
    --bs-btn-bg: var(--lp-primary);
    --bs-btn-border-color: var(--lp-primary);
    --bs-btn-color: #ffffff;
    --bs-btn-hover-bg: var(--lp-secondary);
    --bs-btn-hover-border-color: var(--lp-secondary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-bg: var(--lp-secondary);
    --bs-btn-active-border-color: var(--lp-secondary);
    --bs-btn-active-color: #ffffff;
    --bs-btn-disabled-bg: rgba(var(--lp-primary-rgb), 0.4);
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-disabled-color: rgba(255, 255, 255, 0.7);
    --bs-gradient: none;
    border: none;
}

[data-bs-theme="dark"] .btn-primary,
[data-bs-theme="dark"] .lp-navbar .btn-primary {
    --bs-btn-bg: var(--lp-primary);
    --bs-btn-border-color: var(--lp-primary);
    --bs-btn-color: #000000;
    --bs-btn-hover-bg: #2ae0be;
    --bs-btn-hover-border-color: #2ae0be;
    --bs-btn-hover-color: #000000;
    --bs-btn-active-bg: #1fccaa;
    --bs-btn-active-border-color: #1fccaa;
    --bs-btn-active-color: #000000;
    --bs-btn-disabled-bg: rgba(var(--lp-primary-rgb), 0.3);
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-disabled-color: rgba(0, 0, 0, 0.5);
    --bs-gradient: none;
    border: none;
}

/* btn-light — CTA final section */
.btn-light {
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: transparent;
    --bs-btn-color: var(--lp-dark);
    --bs-btn-hover-bg: #f0f5f3;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-hover-color: var(--lp-dark);
    --bs-gradient: none;
}

[data-bs-theme="dark"] .btn-light {
    --bs-btn-bg: #eef3f5;
    --bs-btn-border-color: transparent;
    --bs-btn-color: #050b10;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-hover-color: #050b10;
    --bs-gradient: none;
}

.lp-cta {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
    box-shadow: 0 10px 24px rgba(var(--lp-primary-rgb), 0.3);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.lp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(var(--lp-primary-rgb), 0.4);
}

.lp-cta:active {
    transform: translateY(0);
}

[data-bs-theme="dark"] .lp-cta {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .lp-cta:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
}

/* ===========================
   Sections
   =========================== */

.lp-section {
    padding: 5rem 0;
}

.lp-section--alt {
    background-color: #ffffff;
}

[data-bs-theme="dark"] .lp-section--alt {
    background-color: #0a1018;
}

.lp-section__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.lp-section__text {
    font-size: 1.1rem;
    color: var(--lp-text-muted);
    max-width: 640px;
    margin-inline: auto;
}

/* ===========================
   HERO
   =========================== */

.lp-hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
    background: linear-gradient(170deg, #f3f7f6 0%, #e8f5f1 50%, #f3f7f6 100%);
}

[data-bs-theme="dark"] .lp-hero {
    background: linear-gradient(170deg, #050b10 0%, #0a1a1a 50%, #050b10 100%);
}

.lp-hero__title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
    .lp-hero__title {
        font-size: 2.8rem;
    }
}

.lp-hero__sub {
    font-size: 1.15rem;
    color: var(--lp-text-muted);
    margin-bottom: 1.5rem;
}

.lp-hero__bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.lp-hero__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 1.02rem;
}

.lp-hero__bullets li i {
    color: var(--lp-primary);
    font-size: 1.15rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.lp-microcopy {
    font-size: 0.875rem;
    color: var(--lp-text-subtle);
}

.lp-microcopy i {
    color: var(--lp-primary);
    margin-right: 0.3rem;
}

/* Hero visual */
.lp-hero__visual {
    position: relative;
}

/* ===========================
   Social Proof Bar (hero)
   =========================== */

.lp-social-proof-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-social-proof-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
}

.lp-social-proof-bar__item i {
    color: var(--lp-primary);
    font-size: 0.95rem;
}

.lp-social-proof-bar__item strong {
    color: var(--lp-body-color);
    font-weight: 700;
}

.lp-social-proof-bar__divider {
    width: 1px;
    height: 20px;
    background: var(--lp-border);
}

/* ===========================
   Pain cards (seção dor)
   =========================== */

.lp-pain-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--lp-card-bg);
    border-radius: var(--lp-radius-sm);
    box-shadow: var(--lp-shadow-soft);
    height: 100%;
}

[data-bs-theme="dark"] .lp-pain-card {
    border: 1px solid var(--lp-border);
}

.lp-pain-card i {
    font-size: 1.2rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ===========================
   Step cards (como funciona)
   =========================== */

.lp-step-card {
    padding: 2rem 1.5rem;
    background: var(--lp-card-bg);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-soft);
    height: 100%;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.lp-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-hover);
}

[data-bs-theme="dark"] .lp-step-card {
    border: 1px solid var(--lp-border);
}

.lp-step-card__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-step-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lp-step-card p {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===========================
   Testimonial Cards
   =========================== */

.lp-testimonial-card {
    padding: 1.75rem 1.5rem;
    background: var(--lp-card-bg);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.lp-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-hover);
}

[data-bs-theme="dark"] .lp-testimonial-card {
    border: 1px solid var(--lp-border);
}

.lp-testimonial-card__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #f5a623;
    font-size: 0.85rem;
}

.lp-testimonial-card__text {
    font-size: 0.95rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.lp-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--lp-border);
    padding-top: 1rem;
}

.lp-testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--lp-body-color);
}

.lp-testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--lp-text-subtle);
}

/* ===========================
   Stat Cards (números de resultado)
   =========================== */

.lp-stat-card {
    padding: 1.5rem 1rem;
    background: var(--lp-card-bg);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-subtle);
    height: 100%;
}

[data-bs-theme="dark"] .lp-stat-card {
    border: 1px solid var(--lp-border);
}

.lp-stat-card__number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--lp-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.lp-stat-card__label {
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    line-height: 1.35;
}

/* ===========================
   Proof cards
   =========================== */

.lp-proof-card {
    padding: 1.5rem;
    background: var(--lp-card-bg);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-soft);
    height: 100%;
}

[data-bs-theme="dark"] .lp-proof-card {
    border: 1px solid var(--lp-border);
}

/* ===========================
   Pricing
   =========================== */

.lp-section--pricing {
    background: linear-gradient(170deg, #f3f7f6 0%, #e8f5f1 60%, #f3f7f6 100%);
}

[data-bs-theme="dark"] .lp-section--pricing {
    background: linear-gradient(170deg, #050b10 0%, #0a1a1a 60%, #050b10 100%);
}

.lp-pricing-card {
    padding: 2.5rem 2rem;
    background: var(--lp-card-bg);
    border-radius: var(--lp-radius);
    box-shadow: 0 20px 50px rgba(var(--lp-primary-rgb), 0.15);
    border: 2px solid rgba(var(--lp-primary-rgb), 0.2);
    position: relative;
}

[data-bs-theme="dark"] .lp-pricing-card {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lp-pricing-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.lp-pricing-card__price {
    margin-bottom: 1.5rem;
}

.lp-pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    color: var(--lp-body-color);
}

.lp-pricing-card__value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--lp-body-color);
}

.lp-pricing-card__period {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--lp-text-subtle);
}

.lp-pricing-card__anchor {
    font-size: 0.95rem;
    color: var(--lp-text-subtle);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lp-pricing-card__list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.lp-pricing-card__list li {
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: var(--lp-text-muted);
}

.lp-pricing-card__list li i {
    color: var(--lp-primary);
    margin-right: 0.5rem;
}

/* Pricing — guarantee integrada */
.lp-pricing-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(var(--lp-primary-rgb), 0.06);
    border-radius: var(--lp-radius-sm);
    border: 1px solid rgba(var(--lp-primary-rgb), 0.15);
    text-align: left;
}

.lp-pricing-guarantee__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(var(--lp-primary-rgb), 0.12);
    color: var(--lp-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-pricing-guarantee__text {
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.5;
}

.lp-pricing-guarantee__text strong {
    color: var(--lp-body-color);
}

/* ===========================
   FAQ Accordion
   =========================== */

.lp-faq-item {
    border: none;
    border-radius: var(--lp-radius-sm) !important;
    margin-bottom: 0.75rem;
    box-shadow: var(--lp-shadow-subtle);
    overflow: hidden;
}

.lp-faq-item .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    background: var(--lp-card-bg);
    color: var(--lp-body-color);
    border-radius: var(--lp-radius-sm) !important;
    padding: 1.1rem 1.5rem;
}

.lp-faq-item .accordion-button:not(.collapsed) {
    background: var(--lp-card-bg);
    color: var(--lp-primary);
    box-shadow: none;
}

.lp-faq-item .accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(var(--lp-primary-rgb), 0.18);
}

.lp-faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230fbf9f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.lp-faq-item .accordion-body {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    padding: 0 1.5rem 1.25rem;
    background: var(--lp-card-bg);
}

[data-bs-theme="dark"] .lp-faq-item {
    border: 1px solid var(--lp-border);
}

[data-bs-theme="dark"] .lp-faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2324d1b0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ===========================
   CTA Final
   =========================== */

.lp-section--cta-final {
    background: linear-gradient(135deg, #101820 0%, #1a2e3e 100%);
    padding: 5rem 0;
}

[data-bs-theme="dark"] .lp-section--cta-final {
    background: linear-gradient(135deg, #0a1018 0%, #0f1e2c 100%);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-section--cta-final .lp-section__title {
    font-size: 2.2rem;
}

.lp-section--cta-final .btn-light,
.lp-section--cta-final .lp-cta.btn-light {
    color: #101820;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: transparent;
    --bs-btn-color: #101820;
    --bs-btn-hover-bg: #f0f5f3;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-hover-color: #101820;
    --bs-gradient: none;
}

.lp-section--cta-final .btn-light:hover,
.lp-section--cta-final .lp-cta.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

[data-bs-theme="dark"] .lp-section--cta-final .btn-light,
[data-bs-theme="dark"] .lp-section--cta-final .lp-cta.btn-light {
    --bs-btn-bg: #eef3f5;
    --bs-btn-color: #050b10;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-color: #050b10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===========================
   Footer
   =========================== */

.lp-footer {
    padding: 1.5rem 0;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-body-bg);
}

.lp-footer a {
    color: var(--lp-primary);
}

.lp-footer a.text-muted {
    text-decoration: none;
    transition: color 0.15s ease;
}

.lp-footer a.text-muted:hover {
    color: var(--lp-primary) !important;
}

/* ===========================
   Responsive tweaks
   =========================== */

@media (max-width: 767.98px) {
    .lp-hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .lp-hero__title {
        font-size: 1.85rem;
    }

    .lp-section {
        padding: 1.5rem 0;
    }

    .lp-section__title {
        font-size: 1.6rem;
    }

    .lp-pricing-card__value {
        font-size: 3rem;
    }

    .lp-section--cta-final .lp-section__title {
        font-size: 1.7rem;
    }

    /* Hero mobile */
    .lp-hero .lp-cta {
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
        padding: 0.85rem 1.5rem;
    }

    .lp-hero__sub {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .lp-hero__bullets {
        margin-bottom: 1.5rem;
    }

    .lp-hero__bullets li {
        font-size: 0.92rem;
    }

    /* Social proof bar mobile */
    .lp-social-proof-bar {
        gap: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-social-proof-bar__item {
        font-size: 0.82rem;
    }

    .lp-social-proof-bar__divider {
        display: none;
    }

    /* Stat cards mobile */
    .lp-stat-card {
        padding: 1.25rem 0.75rem;
    }

    .lp-stat-card__number {
        font-size: 1.5rem;
    }

    .lp-stat-card__label {
        font-size: 0.75rem;
    }
}

/* ===========================
   Animations (entrance)
   =========================== */

.lp-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* ===========================
   Cookie Banner
   =========================== */

.lp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--lp-card-bg);
    border-top: 1px solid var(--lp-border);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.lp-cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-cookie-banner__text {
    margin: 0;
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    flex: 1;
}

.lp-cookie-banner__text a {
    color: var(--lp-primary);
    text-decoration: underline;
}

.lp-cookie-banner__text a:hover {
    color: var(--lp-secondary);
}

.lp-cookie-banner__btn {
    white-space: nowrap;
}

.lp-cookie-banner--hidden {
    display: none;
}

@media (max-width: 767.98px) {
    .lp-cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-cookie-banner__btn {
        width: 100%;
    }
}

/* ===========================
   WhatsApp Float Button
   =========================== */

.lp-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: fit-content;
    pointer-events: none;
}

.lp-whatsapp-float--visible {
    opacity: 1;
    visibility: visible;
}

.lp-whatsapp-float__btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
    pointer-events: auto;
}

.lp-whatsapp-float__btn i {
    font-size: 2rem;
    color: white;
}

.lp-whatsapp-float:hover .lp-whatsapp-float__btn {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.lp-whatsapp-float__balloon {
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    max-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    text-align: center;
    line-height: 1.4;
    pointer-events: auto;
    cursor: pointer;
}

.lp-whatsapp-float__balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.lp-whatsapp-float__balloon--visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 767.98px) {
    .lp-whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
    
    .lp-whatsapp-float__btn {
        width: 54px;
        height: 54px;
    }
    
    .lp-whatsapp-float__btn i {
        font-size: 1.75rem;
    }
    
    .lp-whatsapp-float__balloon {
        max-width: 180px;
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

/* =============================================================================
   Lead Capture Modal
   ============================================================================= */

.lp-lead-modal {
    border: none;
    border-radius: var(--lp-radius);
    background: var(--lp-card-bg);
    color: var(--lp-body-color);
    box-shadow: var(--lp-shadow-hover);
    overflow: hidden;
    position: relative;
}

.lp-lead-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 24px rgba(15, 191, 159, 0.35);
}

.lp-lead-modal__title {
    font-weight: 900;
    color: var(--lp-body-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.lp-lead-modal__subtitle {
    color: var(--lp-text-muted);
    margin-bottom: 0;
}

.lp-lead-modal__label {
    font-weight: 700;
    color: var(--lp-body-color);
    margin-bottom: 0.4rem;
}

.lp-lead-modal__input {
    border: 2px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 0.8rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background: #f5f7fa;
    color: var(--lp-body-color);
}

.lp-lead-modal__input::placeholder {
    color: #6c757d;
    opacity: 1; /* Firefox aplica opacidade padrão no placeholder */
}

.lp-lead-modal__input:focus {
    border-color: var(--lp-primary);
    background: #fff;
    box-shadow: 0 0 0 0.25rem rgba(var(--lp-primary-rgb), 0.18);
}

.lp-lead-modal__input:focus::placeholder {
    color: #adb5bd;
}

.lp-lead-modal__input.is-invalid {
    border-color: var(--lp-danger);
}

.lp-lead-modal__success-icon {
    font-size: 4rem;
    color: var(--lp-primary);
    line-height: 1;
}

@media (max-width: 480px) {
    .lp-lead-modal__title {
        font-size: 1.25rem;
    }
    .lp-lead-modal__icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}
