﻿/* =========================================================
   DEZLEN — CSS (Clean, Organized, Updated)
   - Fondo global consistente (evita “bandas”)
   - Componentes sin duplicados
   - Secciones por orden: Tokens → Base → Layout → UI → Sections
   ========================================================= */


/* ================================
   1) TOKENS / PALETTE
   ================================ */

:root {
    --dz-bg: #191718;
    --dz-bg-2: #121112;
    --dz-text: rgba(255,255,255,.92);
    --dz-muted: rgba(255,255,255,.68);
    --dz-border: rgba(255,255,255,.12);
    --dz-gray: #494949;
    --dz-aqua-1: #43919B;
    --dz-aqua-2: #53BAA8;
    --dz-aqua-3: #6CC0A9;
    --dz-aqua-glow: rgba(83,186,168,.16);
    --dz-radius: 18px;
    --dz-radius-lg: 26px;
    --dz-shadow: 0 18px 60px rgba(0,0,0,.55);
    --dz-shadow-soft: 0 10px 30px rgba(0,0,0,.35);
    --dz-container: 1120px;
}


/* ================================
   2) BASE / RESET
   ================================ */

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color: var(--dz-text);
    background: #0b0c0d; /* fallback */
    position: relative;
}

    /* Fondo global (una sola vez) — evita “bandas” atravesando contenido */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: radial-gradient(1200px 800px at 65% 20%, rgba(83,186,168,.16), transparent 60%), radial-gradient(900px 600px at 20% 80%, rgba(67,145,155,.12), transparent 55%), linear-gradient(180deg, var(--dz-bg), var(--dz-bg-2));
    }

a {
    color: inherit;
}


/* ================================
   3) LAYOUT HELPERS
   ================================ */

.dz-container {
    width: min(var(--dz-container), calc(100% - 40px));
    margin: 0 auto;
}

.dz-section {
    padding: 26px 0;
}

.dz-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.dz-divider {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 18px 0;
}

.dz-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 980px) {
    .dz-grid-3 {
        grid-template-columns: 1fr;
    }
}

.dz-split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
}

@media (max-width: 980px) {
    .dz-split {
        grid-template-columns: 1fr;
    }
}


/* ================================
   4) TYPOGRAPHY
   ================================ */

.dz-h1 {
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 14px 0 14px;
}

.dz-h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.86);
}

.dz-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dz-muted);
    max-width: 56ch;
}

.dz-note {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
}

.dz-mini {
    font-size: 12px;
    color: rgba(255,255,255,.60);
    line-height: 1.5;
}

.dz-tagline {
    margin-top: 10px;
    font-size: 15px;
    letter-spacing: .02em;
    color: rgba(255,255,255,.8);
}


/* ================================
   5) PRIMITIVES (Pill / Badge / Chip)
   ================================ */

.dz-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--dz-border);
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    color: var(--dz-muted);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dz-kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.25);
    color: rgba(255,255,255,.85);
}

.dz-badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
}

.dz-chip {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.86);
    white-space: nowrap;
}

.dz-chip-aqua {
    border-color: rgba(83,186,168,.25);
    background: rgba(83,186,168,.10);
}


/* ================================
   6) CARDS / LISTS
   ================================ */

.dz-card {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    border-radius: var(--dz-radius-lg);
    box-shadow: var(--dz-shadow-soft);
    overflow: hidden;
}

.dz-card-inner {
    padding: 18px;
}

.dz-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: rgba(255,255,255,.88);
    letter-spacing: .10em;
    text-transform: uppercase;
}

.dz-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

    .dz-list li {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(0,0,0,.16);
    }

    .dz-list span {
        color: rgba(255,255,255,.78);
        font-size: 14px;
    }


/* ================================
   7) BUTTONS & LINKS
   ================================ */

.dz-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(135deg, var(--dz-aqua-1), var(--dz-aqua-2), var(--dz-aqua-3));
    color: #061214;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(83,186,168,.18);
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

    .dz-cta:hover {
        filter: brightness(1.02);
        transform: translateY(-1px);
        box-shadow: 0 18px 46px rgba(83,186,168,.22);
    }

.dz-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.86);
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

    .dz-btn:hover {
        background: rgba(255,255,255,.08);
        transform: translateY(-1px);
    }

.dz-btn-primary {
    border-color: rgba(255,255,255,.14);
    background: linear-gradient(135deg, var(--dz-aqua-1), var(--dz-aqua-2), var(--dz-aqua-3));
    color: #061214;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(83,186,168,.16);
}

.dz-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.86);
    text-decoration: none;
    transition: transform .15s ease, background .15s ease;
}

    .dz-btn-ghost:hover {
        background: rgba(255,255,255,.08);
        transform: translateY(-1px);
    }


/* ================================
   8) NAVBAR (Desktop limpio + Mobile sólido)
   ================================ */

.dz-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(18,17,18,.55);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.dz-nav-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative; /* importante para el dropdown en mobile */
}

.dz-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dz-text);
}

    .dz-brand img {
        height: 100px; /* 👈 se queda en 100px */
        width: auto;
        display: block;
    }

/* Links desktop */
.dz-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .dz-links a {
        color: rgba(255,255,255,.78);
        text-decoration: none;
        font-size: 14px;
        padding: 10px 10px;
        border-radius: 12px;
        transition: background .15s ease, color .15s ease, transform .15s ease;
    }

        .dz-links a:hover {
            background: rgba(255,255,255,.06);
            color: rgba(255,255,255,.95);
            transform: translateY(-1px);
        }

        .dz-links a.is-active {
            color: rgba(255,255,255,.92);
        }

            .dz-links a.is-active::after {
                content: "";
                display: block;
                height: 2px;
                width: 18px;
                margin: 6px auto 0;
                border-radius: 999px;
                background: rgba(65,255,214,.65);
            }

/* ✅ Botón hamburguesa: por default NO existe en desktop */
.dz-nav-toggle {
    display: none !important;
    width: 48px;
    height: 40px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    display: flex;
    flex-direction: column; /* 👈 ESTO ES LA CLAVE */
    align-items: center;
    justify-content: center;
    gap: 4px; /* separación entre líneas */

    cursor: pointer;
}

.dz-nav-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,.85);
}

/* ================================
   Mobile
   ================================ */
@media (max-width: 900px) {

    /* ✅ Ahora sí aparece en mobile */
    .dz-nav-toggle {
        display: inline-flex !important;
    }

    /* Menú dropdown */
    .dz-links {
        position: absolute;
        top: calc(74px + 10px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        border-radius: 18px;
        background: #121112; /* ✅ sólido */
        border: 1px solid rgba(255,255,255,.12);
        backdrop-filter: none; /* ✅ sin blur */
        -webkit-backdrop-filter: none;
        box-shadow: 0 18px 40px rgba(0,0,0,.35);
        z-index: 99999;
    }

        .dz-links.is-open {
            display: flex;
        }

    .dz-cta-nav {
        width: 100%;
        justify-content: center;
    }

    .dz-links a.is-active::after {
        margin: 6px 0 0;
    }
}

/* ✅ Por si algo te lo pisa: forzar que en desktop jamás salga */
@media (min-width: 901px) {
    .dz-nav-toggle {
        display: none !important;
    }
}


/* ================================
   9) HERO
   ================================ */

.dz-hero {
    padding: 88px 0 54px;
}

.dz-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 26px;
    align-items: start;
}

@media (max-width: 980px) {
    .dz-hero-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   10) STEPS / FAQ CARDS
   ================================ */

.dz-step {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .dz-step:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 50px rgba(0,0,0,.34);
    }

.dz-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dz-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.86);
    font-weight: 800;
}

.dz-step-tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(83,186,168,.22);
    background: rgba(83,186,168,.10);
    color: rgba(255,255,255,.86);
}

.dz-step h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: rgba(255,255,255,.92);
}

.dz-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.68);
}


/* ================================
   11) FORMS / CONTACT
   ================================ */

.dz-form {
    display: grid;
    gap: 10px;
}

.dz-input, .dz-textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.20);
    color: rgba(255,255,255,.90);
    outline: none;
}

    .dz-input::placeholder, .dz-textarea::placeholder {
        color: rgba(255,255,255,.42);
    }

    .dz-input:focus, .dz-textarea:focus {
        border-color: rgba(83,186,168,.38);
        box-shadow: 0 0 0 4px rgba(83,186,168,.10);
    }

.dz-textarea {
    min-height: 120px;
    resize: vertical;
}

.dz-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.dz-alert {
    padding: 12px 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.25);
    color: rgba(255,255,255,.82);
}

.dz-alert-ok {
    border-color: rgba(65,255,214,.25);
    background: rgba(65,255,214,.08);
}

.dz-alert-err {
    border-color: rgba(255,95,115,.25);
    background: rgba(255,95,115,.08);
}


/* ================================
   12) ECOSISTEMA (Najari / Nalia)
   ================================ */

.dz-eco {
    margin-top: 18px;
}

.dz-eco-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
    align-items: start; /* evita “estirar raro” */
}

@media (max-width: 980px) {
    .dz-eco-grid {
        grid-template-columns: 1fr;
    }
}

.dz-eco-main {
    position: relative;
    overflow: hidden;
}

    .dz-eco-main .dz-card-inner {
        padding: 16px;
    }

    .dz-eco-main .dz-divider {
        margin: 14px 0;
    }

    .dz-eco-main::before {
        content: "";
        position: absolute;
        inset: -120px -120px auto auto;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle at 30% 30%, rgba(83,186,168,.22), transparent 60%);
        filter: blur(8px);
        pointer-events: none;
    }

.dz-prod {
    position: relative;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.16);
    border-radius: 22px;
    overflow: hidden;
    padding: 14px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

    .dz-prod:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 50px rgba(0,0,0,.34);
    }

.dz-prod-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.dz-prod-name {
    font-size: 18px;
    margin: 0;
    color: rgba(255,255,255,.94);
}

.dz-prod-desc {
    margin: 6px 0 0;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.6;
    max-width: 60ch;
}

.dz-prod-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dz-prod-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.dz-eco-side {
    display: grid;
    gap: 12px;
    height: 100%;
}

@media (min-width: 981px) {
    .dz-eco-side {
        position: sticky;
        top: 96px;
        align-self: start;
    }
}

.dz-mini-card {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    border-radius: 22px;
    padding: 14px;
}

.dz-mini-title {
    margin: 0 0 6px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.84);
}

.dz-mini-text {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.6;
}

.dz-mini-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

    .dz-mini-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(0,0,0,.14);
    }

    .dz-mini-list span {
        color: rgba(255,255,255,.78);
        font-size: 14px;
    }

/* Phone mockup */
.dz-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
}

.dz-phone {
    width: 220px;
    border-radius: 36px;
    padding: 10px;
    background: #0f0f10;
    box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 60px rgba(83,186,168,.15);
}

    .dz-phone img {
        width: 100%;
        border-radius: 28px;
        display: block;
        filter: brightness(.95) contrast(1.05);
    }


/* ================================
   13) NALIA TEASER (Coming Soon)
   ================================ */

.dz-teaser {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    overflow: hidden;
    padding: 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
}

    .dz-teaser::before {
        content: "";
        position: absolute;
        inset: -140px auto auto -140px;
        width: 360px;
        height: 360px;
        background: radial-gradient(circle at 30% 30%, rgba(83,186,168,.18), transparent 62%);
        filter: blur(10px);
        pointer-events: none;
    }

    .dz-teaser::after {
        content: "";
        position: absolute;
        inset: auto -180px -180px auto;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle at 30% 30%, rgba(67,145,155,.12), transparent 62%);
        filter: blur(10px);
        pointer-events: none;
    }

.dz-teaser-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.dz-teaser-title {
    margin: 0;
    font-size: 18px;
    color: rgba(255,255,255,.94);
}

.dz-teaser-sub {
    margin: 6px 0 0;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.6;
    max-width: 62ch;
}

.dz-teaser-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dz-teaser-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
}

.dz-feature {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.14);
    border-radius: 18px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

    .dz-feature strong {
        color: rgba(255,255,255,.86);
        font-size: 14px;
        font-weight: 700;
    }

    .dz-feature span {
        color: rgba(255,255,255,.62);
        font-size: 13px;
    }

.dz-teaser-actions {
    position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}


/* ================================
   14) COMPARATIVA (Tabla)
   ================================ */

.dz-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
}

.dz-compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px; /* desktop wide */
}

@media (max-width: 900px) {
    .dz-compare {
        min-width: 720px;
    }
}

.dz-compare thead th {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    color: rgba(255,255,255,.82);
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.dz-compare-left {
    text-align: left;
}

.dz-compare-center {
    text-align: center;
}

.dz-compare tbody td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    vertical-align: middle;
    position: relative;
}

.dz-compare tbody tr:hover {
    background: rgba(255,255,255,.04);
}

.dz-compare-title {
    display: block;
    color: rgba(255,255,255,.90);
    font-weight: 650;
}

.dz-compare-sub {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: rgba(255,255,255,.62);
}

.dz-pill-yes, .dz-pill-no {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,.12);
    white-space: nowrap;
}

.dz-pill-yes {
    background: rgba(65, 255, 214, .10);
    color: rgba(255,255,255,.90);
    border-color: rgba(65, 255, 214, .28);
}

.dz-pill-no {
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.72);
}

.dz-ico {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.20);
}

.dz-compare-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

/* Highlight columna Dezlen */
.dz-compare thead th.dz-col-dezlen {
    position: relative;
}

.dz-compare tbody td.dz-col-dezlen {
    background: rgba(65, 255, 214, .06);
    border-left: 1px solid rgba(65,255,214,.18);
    border-right: 1px solid rgba(65,255,214,.18);
}

    .dz-compare tbody td.dz-col-dezlen::before {
        content: "";
        position: absolute;
        inset: 6px;
        border-radius: 14px;
        background: radial-gradient(120px 60px at 50% 10%, rgba(65,255,214,.22), transparent 70%);
        pointer-events: none;
        opacity: .9;
    }

.dz-compare tbody tr:first-child td.dz-col-dezlen {
    border-top: 1px solid rgba(65,255,214,.18);
}

.dz-compare tbody tr:last-child td.dz-col-dezlen {
    border-bottom: 1px solid rgba(65,255,214,.18);
}


/* ================================
   15) FOOTER
   ================================ */

.dz-footer {
    margin-top: 60px;
    padding: 44px 0 26px;
    background: radial-gradient(900px 420px at 15% -10%, rgba(65,255,214,.12), transparent 60%), radial-gradient(800px 420px at 85% 0%, rgba(255,255,255,.06), transparent 55%), rgba(0,0,0,.42);
    border-top: 1px solid rgba(255,255,255,.10);
}

.dz-footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.dz-footer-brand {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dz-footer-logo img {
    height: 34px;
    width: auto;
    display: block;
    opacity: .92;
}

.dz-footer-tagline {
    margin-top: 12px;
}

.dz-footer-title {
    font-weight: 800;
    letter-spacing: .06em;
    color: rgba(255,255,255,.92);
}

.dz-footer-sub {
    margin-top: 4px;
    color: rgba(255,255,255,.70);
    font-size: 13px;
}

.dz-footer-note {
    margin: 12px 0 14px;
    color: rgba(255,255,255,.70);
    font-size: 14px;
    line-height: 1.5;
}

.dz-footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dz-footer-col {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dz-footer-head {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    color: rgba(255,255,255,.78);
    margin-bottom: 12px;
}

.dz-footer-link {
    display: block;
    padding: 8px 0;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: transform .15s ease, color .15s ease, opacity .15s ease;
}

    .dz-footer-link:hover {
        color: rgba(255,255,255,.92);
        transform: translateX(2px);
    }

.dz-footer-mini {
    margin-top: 10px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.45;
}

.dz-footer-cta {
    margin-top: 14px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.dz-footer-divider {
    height: 1px;
    background: rgba(255,255,255,.10);
    margin: 18px 0 14px;
}

.dz-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.dz-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dz-footer-link-inline {
    color: rgba(255,255,255,.78);
    text-decoration: none;
}

    .dz-footer-link-inline:hover {
        color: rgba(255,255,255,.92);
    }

.dz-dot {
    opacity: .55;
}

@media (max-width: 900px) {
    .dz-footer-top {
        grid-template-columns: 1fr;
    }

    .dz-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Deja de estirar la columna derecha */
.dz-eco-side {
    height: auto !important;
    align-content: start;
}

/* Tarjeta compacta */
.dz-mini-card--tight {
    padding: 14px;
}

    /* Si tu mini-list mete mucho alto, compacta un pelín */
    .dz-mini-card--tight .dz-mini-list li {
        padding: 9px 12px;
    }
.dz-eco-grid {
    align-items: start !important;
}

/* ================================
   FAQ (Accordion)
   ================================ */

.dz-faq {
    display: grid;
    gap: 12px;
}

.dz-faq-item {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    overflow: hidden;
}

    .dz-faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 16px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        color: rgba(255,255,255,.92);
        font-weight: 750;
        font-size: 15px;
    }

        .dz-faq-item summary::-webkit-details-marker {
            display: none;
        }

        /* Icono + */
        .dz-faq-item summary::after {
            content: "+";
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,.14);
            background: rgba(0,0,0,.18);
            color: rgba(255,255,255,.86);
            font-weight: 900;
            flex: 0 0 auto;
            transition: transform .15s ease;
        }

    .dz-faq-item[open] summary::after {
        content: "–";
        transform: translateY(-1px);
    }

.dz-faq-body {
    padding: 0 16px 16px;
    color: rgba(255,255,255,.68);
    line-height: 1.65;
    font-size: 14px;
}

/* Hover suave */
.dz-faq-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
    transition: transform .15s ease, box-shadow .15s ease;
}
.dz-highlight {
    color: var(--dz-aqua-2);
    font-weight: 600;
}
#nosotros .dz-card:first-child {
    position: relative;
}

    #nosotros .dz-card:first-child::before {
        content: "";
        position: absolute;
        left: 0;
        top: 24px;
        bottom: 24px;
        width: 3px;
        border-radius: 999px;
        background: linear-gradient( to bottom, var(--dz-aqua-1), var(--dz-aqua-3) );
        opacity: .9;
    }
.dz-gradient-text {
    background: linear-gradient(90deg, var(--dz-aqua-1), var(--dz-aqua-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
#nosotros .dz-badge {
    background: rgba(83,186,168,.18);
    border-color: rgba(83,186,168,.35);
    color: rgba(255,255,255,.95);
    font-weight: 600;
}
#nosotros .dz-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

    #nosotros .dz-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 70px rgba(0,0,0,.45);
    }
.dz-hero-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dz-pill-link {
    text-decoration: none;
}

.dz-highlight-strong {
    color: rgba(255,255,255,.95);
    font-weight: 600;
}

.dz-hero-footnote {
    margin-top: 12px;
}
/* ================================
   Banner / Teaser horizontal
   ================================ */
.dz-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    box-shadow: 0 12px 34px rgba(0,0,0,.26);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

    .dz-banner::before {
        content: "";
        position: absolute;
        inset: -120px auto auto -120px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle at 30% 30%, rgba(83,186,168,.18), transparent 65%);
        filter: blur(18px);
        pointer-events: none;
    }

.dz-banner-kicker {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
    margin-bottom: 4px;
}

.dz-banner-title {
    font-size: 16px;
    font-weight: 800;
    color: rgba(255,255,255,.92);
}

.dz-banner-sub {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,.68);
    max-width: 62ch;
}

.dz-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 900px) {
    .dz-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .dz-banner-actions {
        width: 100%;
    }
}
.dz-banner-kicker i{
    color: var(--dz-aqua-2);
    font-size: 14px;
}
