/* ============================================================
   ECOVIAL360 — landing-dgt.css
   Landing page: Distintivo Ambiental DGT
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
    --verde:        #1A531A;
    --verde-mid:    #2E7D32;
    --verde-light:  #4CAF50;
    --lima:         #8ED600;
    --lima-light:   #C8F000;
    --blanco:       #FFFFFF;
    --gris-claro:   #F5F7F6;
    --gris:         #6B7280;
    --gris-oscuro:  #374151;
    --negro:        #0F1F0F;
    --warning:      #F59E0B;
    --danger:       #DC2626;

    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  28px;
    --r-pill: 999px;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
}

/* ── Reset mínimo ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gris-oscuro);
    background: var(--blanco);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-btn { 0%,100% { box-shadow: 0 0 0 0 rgba(142,214,0,.4); } 50% { box-shadow: 0 0 0 14px rgba(142,214,0,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { from { background-position: -200% center; } to { background-position: 200% center; } }

/* ── Contenedores ─────────────────────────────────────────── */
.lp-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.lp-container--narrow { max-width: 760px; }

/* ── Botones ──────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--r-pill);
    transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none;
    white-space: nowrap;
}

.lp-btn--sm  { font-size: .85rem;  padding: .55rem 1.25rem; }
.lp-btn--md  { font-size: 1rem;    padding: .75rem 1.75rem; }
.lp-btn--xl  { font-size: 1.1rem;  padding: .95rem 2.25rem; }

.lp-btn--cta {
    background: var(--lima);
    color: var(--negro);
    box-shadow: 0 4px 20px rgba(142,214,0,.4);
}
.lp-btn--cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(142,214,0,.55); }
.lp-btn--cta:active { transform: translateY(0); }

.lp-btn--white {
    background: var(--blanco);
    color: var(--verde);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.lp-btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }

.lp-btn--pulse { animation: pulse-btn 2.4s ease-in-out infinite; }

/* ── Tags / Badges ────────────────────────────────────────── */
.lp-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--verde);
    background: rgba(26,83,26,.1);
    padding: .35em 1em;
    border-radius: var(--r-pill);
    margin-bottom: 1rem;
}
.lp-tag--light {
    color: var(--lima);
    background: rgba(142,214,0,.15);
    border: 1px solid rgba(142,214,0,.3);
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    padding: .4em 1em;
    border-radius: var(--r-pill);
    margin-bottom: 1.25rem;
}
.lp-badge--official {
    background: rgba(255,255,255,.15);
    color: var(--lima);
    border: 1px solid rgba(142,214,0,.4);
    backdrop-filter: blur(4px);
}

/* ── Sección header ───────────────────────────────────────── */
.lp-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.lp-section__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--negro);
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
}
.lp-section__header h2 em { font-style: normal; color: var(--verde-mid); }
.lp-section__header p { font-size: 1.05rem; color: var(--gris); line-height: 1.75; }

/* ── Secciones ────────────────────────────────────────────── */
.lp-section { padding-block: clamp(4rem, 8vw, 7rem); }
.lp-what    { background: var(--gris-claro); }
.lp-faq     { background: var(--gris-claro); }
.lp-social  { background: var(--blanco); }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--verde);
    box-shadow: 0 2px 20px rgba(0,0,0,.2);
    transition: box-shadow .3s;
    padding: 0.4rem;
}

.lp-header__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo_img_header{
    width:100px;
}


.navbar__logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    width: 120px;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    /* margin-top quitado — causaba espacio extra cuando se reutiliza en el footer */
}

/* Solo en el navbar real necesitamos el ajuste visual del logo */
.navbar .navbar__logo {
    margin-top: 1px;
}

.lp-header__logo img {
    height: auto;
    width: 250px;
}

.lp-header__trust {
    display: flex;
    gap: 1.25rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
}

@media (max-width: 700px) {
    .lp-header__trust { display: none; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    background: var(--verde);
    overflow: hidden;
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 80% 50%, rgba(142,214,0,.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(46,125,50,.3) 0%, transparent 60%);
    pointer-events: none;
}

.lp-hero__container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Copy */
.lp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--blanco);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}
.lp-hero__title em { font-style: normal; color: var(--lima); }

.lp-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 48ch;
}
.lp-hero__sub strong { color: var(--lima); }

/* Precio + CTA */
.lp-hero__offer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lp-hero__price {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.lp-price-main {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--blanco);
    line-height: 1;
}
.lp-price-main em { font-style: normal; font-size: 1.8rem; }

.lp-price-detail {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}

.lp-hero__reassurance {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
}

/* Stats */
.lp-hero__stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
}
.lp-stat { text-align: center; }
.lp-stat strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--lima); }
.lp-stat span { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }
.lp-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* Visual */
.lp-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    animation: float 4s ease-in-out infinite;
}

.lp-hero__img-wrap img {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    background: rgba(255,255,255,.05);
}

.lp-hero__img-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lima);
    color: var(--negro);
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 800;
    padding: .4em 1.25em;
    border-radius: var(--r-pill);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(142,214,0,.4);
}

/* Float cards */
.lp-float-card {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: var(--r-md);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--shadow-md);
    font-size: .82rem;
    max-width: 180px;
    animation: float 4s ease-in-out infinite;
}
.lp-float-card--left  { left: -20px; top: 20%; animation-delay: .5s; }
.lp-float-card--right { right: -20px; bottom: 25%; animation-delay: 1.2s; }

.lp-float-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.lp-float-card strong { display: block; color: var(--negro); font-weight: 700; font-size: .82rem; }
.lp-float-card span   { color: var(--gris); font-size: .72rem; }

/* ══════════════════════════════════════════════════════
   URGENCIA
══════════════════════════════════════════════════════ */
.lp-urgency {
    background: var(--negro);
    padding: .75rem 1.5rem;
}

.lp-urgency__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    flex-wrap: wrap;
}

.lp-urgency__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 3px rgba(34,197,94,.3);
    flex-shrink: 0;
    animation: pulse-btn 2s ease-in-out infinite;
}

.lp-urgency__inner strong { color: var(--lima); }

.lp-urgency__cta {
    background: var(--lima);
    color: var(--negro);
    font-weight: 800;
    font-size: .8rem;
    padding: .35em 1em;
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    transition: opacity .2s;
}
.lp-urgency__cta:hover { opacity: .9; }

/* ══════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════ */
.lp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.lp-feature {
    background: var(--blanco);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.lp-feature__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.lp-feature__icon--green  { background: #F0FDF4; color: #16A34A; }
.lp-feature__icon--blue   { background: #EFF6FF; color: #3B82F6; }
.lp-feature__icon--orange { background: #FFF7ED; color: #EA580C; }
.lp-feature__icon--purple { background: #F5F3FF; color: #7C3AED; }

.lp-feature h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--negro); }
.lp-feature p  { font-size: .88rem; color: var(--gris); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   TIPOS
══════════════════════════════════════════════════════ */
.lp-tipos { background: var(--blanco); }

.lp-tipos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.lp-tipo {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid #E5EAE3;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    padding-bottom: 1.5rem;
}
.lp-tipo:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--verde-mid); }

.lp-tipo__badge {
    background: var(--negro);
    color: var(--blanco);
    font-family: var(--font-display);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    padding: .35em 1em;
    margin: 1rem 1rem .75rem;
    border-radius: var(--r-pill);
    display: inline-block;
}
.lp-tipo__color {
    height: 80px;
    margin: 0 1rem .75rem;
    border-radius: var(--r-md);
}

.lp-tipo h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; padding: 0 1rem; margin-bottom: .5rem; color: var(--negro); }
.lp-tipo p  { font-size: .82rem; color: var(--gris); padding: 0 1rem; line-height: 1.6; margin-bottom: .75rem; }

.lp-tipo__benefit {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--verde-mid);
    padding: .3em 1rem;
    background: rgba(46,125,50,.06);
    margin: 0 1rem;
    border-radius: var(--r-sm);
    text-align: center;
}

.lp-tipos__cta {
    text-align: center;
    background: var(--gris-claro);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.lp-tipos__cta p { color: var(--gris); font-size: .95rem; }
.lp-tipos__cta strong { color: var(--negro); }

/* ══════════════════════════════════════════════════════
   PROCESO
══════════════════════════════════════════════════════ */
.lp-proceso { background: var(--verde); overflow: hidden; position: relative; }
.lp-proceso::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(142,214,0,.1), transparent 70%);
    pointer-events: none;
}
.lp-proceso .lp-section__header h2 { color: var(--blanco); }
.lp-proceso .lp-section__header h2 em { color: var(--lima); }
.lp-proceso .lp-section__header p { color: rgba(255,255,255,.7); }

.lp-pasos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.lp-paso {
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-inline: 1rem;
}

.lp-paso__num {
    font-family: var(--font-display);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--negro);
    background: var(--lima);
    padding: .3em .8em;
    border-radius: var(--r-pill);
}

.lp-paso__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lima);
    transition: background .2s, border-color .2s;
}
.lp-paso:hover .lp-paso__icon { background: rgba(255,255,255,.18); border-color: var(--lima); }

.lp-paso h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--blanco); }
.lp-paso p  { font-size: .85rem; color: rgba(255,255,255,.68); line-height: 1.65; }

.lp-paso__connector {
    flex: 0 0 50px;
    height: 2px;
    background: linear-gradient(90deg, rgba(142,214,0,.5), rgba(142,214,0,.15));
    align-self: center;
    margin-top: 1rem;
    border-radius: 2px;
}

.lp-proceso__cta { text-align: center; position: relative; z-index: 1; }
.lp-proceso__note { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: .75rem; }

/* ══════════════════════════════════════════════════════
   BANNER MID
══════════════════════════════════════════════════════ */
.lp-banner-mid {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 1.5rem;
    isolation: isolate;
}

.lp-banner-mid__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-banner-mid__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.lp-banner-mid__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(10, 5, 5, 0.88) 0%,
        rgba(30, 10, 10, 0.75) 55%,
        rgba(10, 5, 5, 0.85) 100%
    );
}

.lp-banner-mid__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.lp-banner-mid__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--blanco);
    line-height: 1.2;
    margin-bottom: .75rem;
}

.lp-banner-mid__text h2 em {
    font-style: normal;
    color: #FCA5A5;
}

.lp-banner-mid__text p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    max-width: 52ch;
}
/* ══════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════ */
.lp-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: .75rem;
    font-size: .9rem;
    color: var(--gris);
}
.lp-rating-stars { color: #F59E0B; font-size: 1.1rem; }

.lp-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.lp-review {
    background: var(--gris-claro);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    border: 1px solid #E5EAE3;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.lp-review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.lp-review__stars { color: #F59E0B; font-size: 1rem; margin-bottom: .3rem; }
.lp-review__verified { font-size: .72rem; font-weight: 700; color: #16A34A; margin-bottom: .75rem; }
.lp-review__title { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--negro); margin-bottom: .5rem; }
.lp-review__text { font-size: .88rem; color: var(--gris); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }

.lp-review__author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.lp-review__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--verde);
    color: var(--blanco);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-review__author strong { display: block; font-size: .85rem; color: var(--negro); }
.lp-review__author span   { font-size: .75rem; color: var(--gris); }

.lp-social__cta { text-align: center; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.lp-faq__list { display: flex; flex-direction: column; gap: .75rem; }

.lp-faq__item {
    background: var(--blanco);
    border-radius: var(--r-md);
    border: 1.5px solid #E5EAE3;
    overflow: hidden;
    transition: border-color .2s;
}
.lp-faq__item:has(.lp-faq__q[aria-expanded="true"]) { border-color: var(--verde-mid); }

.lp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--negro);
    text-align: left;
    transition: background .2s;
}
.lp-faq__q:hover { background: rgba(26,83,26,.04); }

.lp-faq__icon {
    flex-shrink: 0;
    color: var(--verde-mid);
    transition: transform .3s;
}
.lp-faq__q[aria-expanded="true"] .lp-faq__icon { transform: rotate(180deg); }

.lp-faq__a {
    padding: 0 1.5rem 1.25rem;
    animation: fadeUp .2s ease;
}
.lp-faq__a p { font-size: .9rem; color: var(--gris); line-height: 1.75; }
.lp-faq__a a { color: var(--verde-mid); font-weight: 600; text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════ */
.lp-cta-final {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) 1.5rem;
    text-align: center;
}
.lp-cta-final__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600&q=80&fit=crop&auto=format') center/cover no-repeat;
}
.lp-cta-final__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,30,10,.92) 0%, rgba(26,83,26,.85) 100%);
}
.lp-cta-final__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lp-cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--blanco);
    line-height: 1.1;
    letter-spacing: -.025em;
}
.lp-cta-final__title em { font-style: normal; color: var(--lima); }
.lp-cta-final__sub { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 52ch; }

.lp-cta-final__offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.lp-cta-final__price-block { text-align: center; }
.lp-cta-final__price {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lima);
    line-height: 1;
}
.lp-cta-final__price-note { font-size: .82rem; color: rgba(255,255,255,.55); }

.lp-cta-final__trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
    font-size: .82rem;
    color: rgba(255,255,255,.65);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.lp-footer {
    background: var(--negro);
    padding: 2.5rem 0;
}
.lp-footer__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.lp-footer__logo img { height: 32px; width: auto; }

.lp-footer__links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.lp-footer__links a {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    transition: color .2s;
}
.lp-footer__links a:hover { color: var(--lima); }

.lp-footer__copy { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .lp-features { grid-template-columns: repeat(2, 1fr); }
    .lp-tipos__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-reviews { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
}

@media (max-width: 768px) {
    .lp-hero__container { grid-template-columns: 1fr; gap: 3rem; }
    .lp-hero__visual { order: -1; max-width: 320px; margin: 0 auto; }
    .lp-float-card--left, .lp-float-card--right { display: none; }
    .lp-pasos { flex-direction: column; align-items: center; gap: 2rem; }
    .lp-paso__connector { width: 2px; height: 40px; flex: 0 0 auto; background: linear-gradient(180deg, rgba(142,214,0,.5), rgba(142,214,0,.15)); margin-top: 0; }
    .lp-banner-mid__inner { flex-direction: column; text-align: center; }
    .lp-banner-mid__text h2 br { display: none; }
    .lp-footer__inner { flex-direction: column; text-align: center; }
    .lp-footer__links { justify-content: center; }
    .lp-cta-final__trust { gap: 1rem; font-size: .75rem; }
}

@media (max-width: 480px) {
    .lp-features { grid-template-columns: 1fr; }
    .lp-tipos__grid { grid-template-columns: 1fr; }
    .lp-hero__stats { flex-wrap: wrap; gap: 1rem; }
    .lp-cta-final__title { font-size: 1.8rem; }
    .lp-price-main { font-size: 2.4rem; }
    .lp-btn--xl { font-size: 1rem; padding: .85rem 1.75rem; }
}
