/* Landing “Control de tiempo” — inspirada en Codesk (Home 3), maquetación propia */
:root {
    --cd-coral: #f15b41;
    --cd-coral-hover: #d94a32;
    --cd-coral-soft: #ff4d30;
    --cd-ink: #2d2a28;
    --cd-ink-mid: #3d3735;
    --cd-muted: #777777;
    --cd-line: #e8e4e1;
    --cd-bg: #ffffff;
    --cd-bg-warm: #fdf8f7;
    --cd-bg-pink: #fef5f4;
    --font: "Poppins", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--cd-ink);
    background: var(--cd-bg-warm);
    font-size: 15px;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--cd-coral);
}

.inner {
    width: min(1140px, 92vw);
    margin-left: auto;
    margin-right: auto;
}

/* —— Top strip —— */
.cd-topstrip {
    background: var(--cd-bg);
    border-bottom: 1px solid var(--cd-line);
    font-size: 0.8125rem;
    padding: 0.55rem 0;
}

/* Tres columnas: email | teléfono | dirección (tipo Codesk) */
.cd-topstrip-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem 1.25rem;
    align-items: center;
    font-size: 0.8125rem;
}

.cd-topstrip-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--cd-muted);
    min-width: 0;
}

.cd-topstrip-item--center {
    justify-self: center;
    text-align: center;
}

.cd-topstrip-item--end {
    justify-self: end;
    text-align: right;
}

.cd-topstrip a.cd-topstrip-item {
    color: var(--cd-ink-mid);
    text-decoration: none;
}

.cd-topstrip a.cd-topstrip-item:hover {
    color: var(--cd-coral);
}

/* Cabecera fija: franja promo + menú (se mantiene al hacer scroll) */
.cd-site-head {
    position: sticky;
    top: 0;
    z-index: 250;
    box-shadow: 0 4px 24px rgba(45, 42, 40, 0.1);
}

.cd-site-head .cd-header {
    position: relative;
    top: auto;
    z-index: 1;
}

/* Franja superior: promo “14 días de prueba gratis” (llamativa, ancho completo) */
.cd-topstrip--trial {
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, #c73d28 0%, #f15b41 42%, #e84830 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cd-topstrip--trial .cd-topstrip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.65rem 0;
}

.cd-trial-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1.25rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.cd-trial-banner__icon {
    display: flex;
    color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.cd-trial-banner__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
    min-width: min(100%, 280px);
}

.cd-trial-banner__title {
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(0.95rem, 2.1vw, 1.15rem);
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.cd-trial-banner__sub {
    font-size: clamp(0.72rem, 1.5vw, 0.8125rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.35;
    max-width: 42ch;
}

.cd-trial-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: var(--font);
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    color: #e03e28 !important;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    flex-shrink: 0;
}

.cd-trial-banner__cta:hover {
    color: #c43522 !important;
    background: #fffef9;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.cd-trial-banner__cta-arrow {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.cd-trial-banner__cta:hover .cd-trial-banner__cta-arrow {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .cd-trial-banner__cta,
    .cd-trial-banner__cta-arrow {
        transition: none;
    }

    .cd-trial-banner__cta:hover {
        transform: none;
    }
}

@media (min-width: 720px) {
    .cd-trial-banner {
        flex-wrap: nowrap;
        justify-content: space-between;
        text-align: left;
        gap: 1rem 1.5rem;
    }

    .cd-trial-banner__text {
        align-items: flex-start;
        text-align: left;
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 719px) {
    .cd-trial-banner__icon {
        display: none;
    }
}

/* Filas con botón de prueba entre secciones */
.cd-trial-row {
    margin-top: 1.75rem;
    text-align: center;
}

.cd-trial-row--spaced {
    margin-top: 2rem;
}

@media (max-width: 820px) {
    .cd-topstrip-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .cd-topstrip-item--end {
        justify-self: center;
        text-align: center;
    }
}

.cd-ic {
    color: var(--cd-coral);
    flex-shrink: 0;
}

/* —— Header —— */
.cd-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--cd-bg);
    border-bottom: 1px solid var(--cd-line);
}

.cd-header .inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
}

.cd-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--cd-ink);
    text-decoration: none;
    text-transform: lowercase;
}

.cd-logo:hover {
    text-decoration: none;
    color: var(--cd-ink-mid);
}

.cd-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.cd-footer .cd-logo-img {
    width: 32px;
    height: 32px;
}

.cd-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 1.35rem;
    margin-left: auto;
}

.cd-nav a {
    color: var(--cd-ink-mid);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.cd-nav a:hover {
    color: var(--cd-coral);
}

.cd-nav a.is-active {
    color: var(--cd-ink);
}

.cd-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 26px;
    height: 3px;
    background: var(--cd-coral);
    border-radius: 1px;
}

.cd-header-client {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cd-muted);
    text-decoration: none;
    padding: 0.35rem 0;
    white-space: nowrap;
    border-bottom: 1px solid transparent;
}

.cd-header-client:hover {
    color: var(--cd-coral);
    border-bottom-color: rgba(241, 91, 65, 0.35);
}

.cd-burger {
    display: none;
    background: none;
    border: 0;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .cd-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        margin-left: 0;
        order: 5;
        width: 100%;
    }

    .cd-nav.is-open {
        display: flex;
    }

    .cd-burger {
        display: block;
    }

    .cd-header {
        position: relative;
    }

    .cd-header .inner {
        flex-wrap: wrap;
    }

    .cd-header-client {
        font-size: 0.75rem;
        margin-left: auto;
        margin-right: 0.35rem;
    }
}

/* —— Botones —— */
.cd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.cd-btn-coral {
    background: var(--cd-coral);
    color: #fff !important;
}

.cd-btn-coral:hover {
    background: var(--cd-coral-hover);
    text-decoration: none;
}

.cd-btn-outline-coral {
    background: transparent;
    color: var(--cd-coral) !important;
    border: 2px solid var(--cd-coral);
}

.cd-btn-outline-coral:hover {
    background: var(--cd-coral);
    color: #fff !important;
    text-decoration: none;
}

.cd-btn-dark {
    background: var(--cd-ink-mid);
    color: #fff !important;
    border: 2px solid #fff;
}

.cd-btn-dark:hover {
    background: #1a1817;
    text-decoration: none;
}

/* CTA de cliente (legado; preferir .cd-btn-access en landing) */
.cd-btn-client {
    background: transparent;
    color: var(--cd-ink-mid) !important;
    border: 2px solid var(--cd-ink-mid);
}

.cd-btn-client:hover {
    border-color: var(--cd-coral);
    color: var(--cd-coral) !important;
    text-decoration: none;
}

/* Acceso al panel: tercer nivel — no compite con demo ni “cómo funciona” */
.cd-btn-access {
    background: transparent;
    color: var(--cd-muted) !important;
    border: 1px solid var(--cd-line);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.55rem 1.1rem;
}

.cd-btn-access:hover {
    color: var(--cd-ink-mid) !important;
    border-color: rgba(45, 42, 40, 0.28);
    text-decoration: none;
}

/* —— Hero estilo Codesk Home: texto izq. + ilustración dcha., fondo crema —— */
.cd-hero {
    background: linear-gradient(180deg, #fdfaf8 0%, #f7f3f0 55%, #fdfaf8 100%);
    padding: 3.25rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.cd-hero .inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2rem 2.75rem;
    align-items: center;
}

.cd-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    min-width: 0;
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    text-align: left;
}

.cd-hero-deco--ribbon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 155px;
    border: 2px solid var(--cd-coral);
    border-right: none;
    border-radius: 90px 0 0 90px;
    opacity: 0.4;
    pointer-events: none;
}

.cd-hero-kicker {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cd-coral);
    margin-bottom: 0.35rem;
}

.cd-hero-kicker .tri {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid var(--cd-coral);
}

.cd-hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.15rem);
    font-weight: 800;
    line-height: 1.06;
    color: var(--cd-ink-mid);
    margin: 0 0 1rem;
    max-width: min(22ch, 100%);
    letter-spacing: -0.035em;
}

/* Dos promesas en el hero (líneas separadas) */
.cd-hero h1.cd-hero-h1 {
    max-width: min(40ch, 100%);
    font-size: clamp(1.35rem, 2.9vw, 2.05rem);
    line-height: 1.2;
}

.cd-hero-h1-line {
    display: block;
}

.cd-hero-h1-line + .cd-hero-h1-line {
    margin-top: 0.45rem;
}

.cd-hero-quote {
    margin: 0 0 1rem;
    padding: 0.85rem 0 0.85rem 1rem;
    border-left: 4px solid var(--cd-coral);
    max-width: min(46ch, 100%);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--cd-ink-mid);
    font-weight: 500;
}

.cd-hero .lead {
    color: var(--cd-muted);
    margin: 0 0 1.2rem;
    max-width: min(42ch, 100%);
    font-size: 1.02rem;
    line-height: 1.55;
}

.cd-hero .lead-secondary {
    color: var(--cd-muted);
    margin: 0.65rem 0 0;
    max-width: min(46ch, 100%);
    font-size: 0.9rem;
    line-height: 1.52;
    opacity: 0.95;
}

.cd-hero-visual {
    position: relative;
    min-height: 280px;
}

/* Composición hero: pantallas del producto (sustituir PNG en /assets/hero-product/) */
.cd-hero-product .cd-hero-product-stack {
    position: relative;
    width: 100%;
    max-width: 780px;
    min-height: 400px;
    margin-left: auto;
    margin-right: 0;
}

.cd-hero-shot {
    position: absolute;
    margin: 0;
}

.cd-hero-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 22px 48px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #fff;
}

.cd-hero-shot-cap {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cd-muted);
    margin: 0.5rem 0 0;
    text-align: center;
    line-height: 1.35;
}

.cd-hero-shot-cap-k {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--cd-coral);
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

/* Composición en 3 zonas: arriba jornada, centro actividad/panel, abajo ausencias-calendario */
.cd-hero-shot--jornada {
    left: 0;
    top: 0;
    width: 62%;
    z-index: 1;
    transform: rotate(-4deg);
}

.cd-hero-shot--actividad {
    right: -2%;
    top: 8px;
    width: 54%;
    z-index: 3;
    transform: rotate(5deg);
}

.cd-hero-shot--planificacion {
    left: 12%;
    bottom: -4px;
    width: 58%;
    z-index: 2;
    transform: rotate(-2deg);
}

.cd-hero-composition-hint {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--cd-muted);
    margin: 1rem 0 0;
    max-width: min(34ch, 100%);
    margin-left: auto;
    text-align: right;
}

@media (prefers-reduced-motion: reduce) {
    .cd-hero-shot--jornada,
    .cd-hero-shot--actividad,
    .cd-hero-shot--planificacion {
        transform: none;
    }
}

@media (max-width: 900px) {
    .cd-hero .inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cd-hero-copy {
        align-items: center;
        text-align: center;
        padding-left: 0;
        order: 1;
    }

    .cd-hero-deco--ribbon {
        display: none;
    }

    .cd-hero-kicker {
        justify-content: center;
    }

    .cd-hero h1 {
        max-width: min(22ch, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .cd-hero h1.cd-hero-h1 {
        max-width: min(36ch, 100%);
    }

    .cd-hero .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .cd-hero .lead-secondary {
        margin-left: auto;
        margin-right: auto;
    }

    .cd-hero-visual {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
    }

    .cd-hero-product .cd-hero-product-stack {
        max-width: min(480px, 100%);
        min-height: 0;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 0;
    }

    .cd-hero-composition-hint {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.75rem;
    }

    .cd-hero-shot {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        transform: none !important;
    }

    .cd-hero-shot + .cd-hero-shot {
        margin-top: 0.35rem;
    }
}

/* —— Beneficios principales (cuatro bloques) —— */
.cd-benefits-split {
    padding: 3.75rem 0 3.5rem;
    background: var(--cd-bg);
    border-top: 1px solid var(--cd-line);
    border-bottom: 1px solid var(--cd-line);
}

.cd-benefits-split .inner {
    position: relative;
    z-index: 1;
}

.cd-benefits-split h2 {
    text-align: center;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-benefits-intro {
    text-align: center;
    margin: 0 auto 2.25rem;
    max-width: min(58ch, 100%);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cd-muted);
}

.cd-benefits-intro--stack p {
    margin: 0 0 0.65rem;
}

.cd-benefits-intro--stack p:last-child {
    margin-bottom: 0;
}

.cd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.cd-benefits-grid--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1100px) {
    .cd-benefits-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cd-benefits-grid {
        grid-template-columns: 1fr;
    }

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

.cd-benefits-card {
    background: var(--cd-bg-warm);
    border: 1px solid var(--cd-line);
    border-radius: 2px;
    padding: 1.5rem 1.35rem 1.6rem;
    box-shadow: 0 10px 36px rgba(45, 42, 40, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cd-benefits-card:hover {
        box-shadow: 0 16px 48px rgba(45, 42, 40, 0.09);
        transform: translateY(-3px);
    }
}

.cd-benefits-card-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cd-coral);
}

.cd-benefits-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--cd-ink-mid);
    line-height: 1.25;
}

.cd-benefits-card-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--cd-muted);
}

.cd-benefits-grid--four .cd-benefits-card h3 {
    font-size: 0.98rem;
}

.cd-benefits-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.cd-benefits-card li {
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.62;
    color: var(--cd-muted);
}

.cd-benefits-card li:last-child {
    margin-bottom: 0;
}

.cd-benefits-card strong {
    color: var(--cd-ink-mid);
    font-weight: 600;
}

/* —— Visibilidad del trabajo (post-beneficios) —— */
.cd-work-visibility {
    padding: 3.5rem 0 3.35rem;
    background: var(--cd-bg-warm);
    border-top: 1px solid var(--cd-line);
    border-bottom: 1px solid var(--cd-line);
}

.cd-work-visibility .cd-section-kicker,
.cd-work-visibility h2 {
    text-align: center;
}

.cd-work-visibility h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-work-visibility-lead {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: min(58ch, 100%);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cd-muted);
}

.cd-work-visibility-visuals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: start;
}

@media (max-width: 1000px) {
    .cd-work-visibility-visuals {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .cd-work-visibility-visuals {
        grid-template-columns: 1fr;
    }
}

.cd-wv-tile {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.cd-wv-mock {
    border-radius: 10px;
    border: 1px solid var(--cd-line);
    background: #fff;
    box-shadow: 0 10px 32px rgba(45, 42, 40, 0.07);
    overflow: hidden;
    min-height: 140px;
}

.cd-wv-mock--chart {
    padding: 0;
    aspect-ratio: 16 / 10;
    color: var(--cd-coral);
}

.cd-wv-mock--chart svg {
    display: block;
    width: 100%;
    height: 100%;
}

.cd-wv-mock--time {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 140px;
    justify-content: center;
}

.cd-wv-time-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cd-muted);
    font-weight: 600;
}

.cd-wv-time-big {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-wv-time-sub {
    font-size: 0.7rem;
    color: var(--cd-muted);
    line-height: 1.35;
}

.cd-wv-mock--panel img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    max-height: 260px;
}

.cd-wv-mock--kpi {
    padding: 1rem;
    min-height: 140px;
}

.cd-wv-kpi-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
}

.cd-wv-kpi-pill {
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(241, 91, 65, 0.12);
    color: var(--cd-ink-mid);
}

.cd-wv-kpi-pill--soft {
    background: rgba(45, 42, 40, 0.06);
}

.cd-wv-kpi-note {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--cd-muted);
}

.cd-wv-cap {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cd-muted);
    text-align: center;
}

.cd-work-visibility-foot {
    margin: 0 auto;
    max-width: min(54ch, 100%);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--cd-muted);
}

.cd-work-visibility-foot--stack p {
    margin: 0 0 0.55rem;
}

.cd-work-visibility-foot--stack p:first-child {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--cd-ink-mid);
}

.cd-work-visibility-foot--stack p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--cd-muted);
}

/* —— Panel del jefe (captura en pantalla de ordenador) —— */
.cd-boss-preview {
    padding: 3.5rem 0 3.75rem;
    background: var(--cd-bg);
    border-top: 1px solid var(--cd-line);
}

.cd-boss-preview .inner {
    width: min(1280px, 96vw);
}

.cd-boss-preview .cd-section-kicker,
.cd-boss-preview h2 {
    text-align: center;
}

.cd-boss-preview h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-boss-preview-lead {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: min(58ch, 100%);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cd-muted);
}

.cd-boss-preview-lead p {
    margin: 0 0 0.65rem;
}

.cd-boss-preview-lead p:last-child {
    margin-bottom: 0;
}

.cd-boss-preview-copy {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.cd-boss-preview-fragment {
    padding: 1.2rem 1.25rem 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--cd-line);
    background: #fff;
    box-shadow: 0 10px 36px rgba(45, 42, 40, 0.06);
}

.cd-boss-preview-fragment--pitch {
    border-left: 4px solid var(--cd-coral);
    background: linear-gradient(145deg, rgba(254, 245, 244, 0.65) 0%, #fff 55%);
}

.cd-boss-preview-fragment--control {
    background: var(--cd-bg-warm);
    box-shadow: 0 6px 24px rgba(45, 42, 40, 0.05);
}

.cd-boss-preview-pitch-line {
    margin: 0 0 0.65rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--cd-muted);
}

.cd-boss-preview-list--pitch {
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
}

.cd-boss-preview-list--pitch li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--cd-ink-mid);
}

.cd-boss-preview-list--pitch li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cd-coral);
    opacity: 0.85;
}

.cd-boss-preview-list--pitch li:last-child {
    margin-bottom: 0;
}

.cd-boss-preview-list--dense li {
    margin-bottom: 0.62rem;
    font-size: 0.92rem;
    line-height: 1.55;
}

.cd-boss-preview-list--dense li:last-child {
    margin-bottom: 0;
}

/* Caja destacada inferior: mismo diseño en panel (dinero) y gráficos */
.cd-boss-preview-highlight {
    grid-column: 1 / -1;
    margin-top: 0.65rem;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(241, 91, 65, 0.2);
    background: linear-gradient(160deg, #fff8f6 0%, #fef5f4 40%, #fff 100%);
    box-shadow: 0 14px 44px rgba(241, 91, 65, 0.09);
    text-align: center;
}

.cd-boss-preview-highlight__header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 0.75rem;
    padding: 1.35rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(241, 91, 65, 0.12);
    background: rgba(255, 255, 255, 0.55);
}

.cd-boss-preview-highlight__body {
    padding: 1.35rem 1.5rem 1.6rem;
    max-width: min(40rem, 100%);
    margin: 0 auto;
}

.cd-boss-preview-highlight__body > p {
    margin: 0 0 0.85rem;
    font-size: clamp(1.02rem, 1.9vw, 1.15rem);
    line-height: 1.65;
    color: var(--cd-muted);
}

.cd-boss-preview-highlight__body > p:last-child {
    margin-bottom: 0;
}

.cd-boss-preview-highlight__head {
    margin: 0 !important;
    flex: 1 1 16rem;
    max-width: min(36rem, 100%);
    font-size: clamp(1.12rem, 2.2vw, 1.35rem) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--cd-ink-mid) !important;
    letter-spacing: -0.02em;
}

.cd-boss-preview-highlight__last {
    margin-top: 0.5rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(241, 91, 65, 0.18);
    font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    color: var(--cd-ink-mid) !important;
}

.cd-boss-preview-highlight__icon {
    flex-shrink: 0;
    font-size: clamp(1.45rem, 3vw, 1.75rem);
    line-height: 1;
}

.cd-boss-preview-highlight__lead2 {
    margin: 0.35rem 0 0.75rem !important;
    font-weight: 600 !important;
    color: var(--cd-ink-mid) !important;
    text-align: center;
}

.cd-boss-preview-highlight__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    font-size: clamp(0.98rem, 1.75vw, 1.08rem);
    line-height: 1.65;
    color: var(--cd-muted);
}

.cd-boss-preview-highlight__list li {
    position: relative;
    margin-bottom: 0.65rem;
    padding-left: 1.1rem;
}

.cd-boss-preview-highlight__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cd-coral);
    opacity: 0.85;
}

.cd-boss-preview-highlight__list li:last-child {
    margin-bottom: 0;
}

.cd-boss-preview-highlight__list strong {
    color: var(--cd-ink-mid);
    font-weight: 600;
}

.cd-boss-preview-highlight-punch {
    grid-column: 1 / -1;
    margin: 0.5rem 0 0;
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-boss-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr);
    gap: 2.5rem 2.75rem;
    align-items: start;
}

@media (max-width: 960px) {
    .cd-boss-preview-grid {
        grid-template-columns: 1fr;
    }

    .cd-boss-preview-grid .cd-monitor-wrap {
        order: -1;
    }
}

.cd-boss-preview-intro {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cd-ink-mid);
}

.cd-boss-preview-intro.cd-boss-preview-intro--control {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cd-coral);
}

.cd-boss-preview-list {
    margin: 0;
    padding-left: 1.2rem;
}

.cd-boss-preview-list li {
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--cd-muted);
}

.cd-boss-preview-list li:last-child {
    margin-bottom: 0;
}

.cd-boss-preview-list strong {
    color: var(--cd-ink-mid);
    font-weight: 600;
}

.cd-boss-preview-note {
    margin: 1.15rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--cd-line);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--cd-muted);
}

.cd-boss-preview-note strong {
    color: var(--cd-ink-mid);
    font-weight: 600;
}

.cd-boss-preview-block {
    margin-top: 3rem;
    padding-top: 2.75rem;
    border-top: 1px solid var(--cd-line);
}

.cd-boss-preview-subh {
    margin: 0 0 0.65rem;
    text-align: center;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-boss-preview-sublead {
    margin: 0 auto 2rem;
    max-width: min(58ch, 100%);
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--cd-muted);
}

.cd-boss-preview-sublead--stack p {
    margin: 0 0 0.55rem;
}

.cd-boss-preview-sublead--stack p:last-child {
    margin-bottom: 0;
}

/* Segundo bloque: captura a la izquierda, texto a la derecha */
.cd-boss-preview-grid--flip {
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 0.78fr);
}

@media (max-width: 960px) {
    .cd-boss-preview-grid--flip {
        grid-template-columns: 1fr;
    }

    .cd-boss-preview-grid--flip .cd-monitor-wrap {
        order: -1;
    }
}

.cd-monitor-wrap {
    margin: 0;
}

.cd-monitor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: min(960px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.cd-monitor__bezel {
    width: 100%;
    padding: 0.55rem 0.6rem 0.75rem;
    border-radius: 14px;
    background: linear-gradient(165deg, #4a4a4a 0%, #2a2826 45%, #1f1e1d 100%);
    box-shadow:
        0 28px 56px rgba(45, 42, 40, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.cd-monitor__cam {
    position: absolute;
    top: 0.42rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #3d3d3d;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cd-monitor__screen {
    margin-top: 1.1rem;
    border-radius: 6px;
    overflow: hidden;
    background: #0c0c0c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cd-monitor__screen img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.cd-monitor__neck {
    width: 22%;
    min-width: 72px;
    height: 26px;
    margin-top: -1px;
    background: linear-gradient(180deg, #2f2e2d, #1c1b1a);
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

.cd-monitor__base {
    width: 44%;
    min-width: 120px;
    height: 11px;
    margin-top: -1px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, #3a3836, #2a2826);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.cd-monitor-caption {
    margin: 1.1rem 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--cd-muted);
    text-align: center;
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
}

/* —— 4 servicios (estilo Codesk: blanco + coral al hover) —— */
.cd-services {
    background: var(--cd-bg);
    padding: 2.5rem 0 3.5rem;
    position: relative;
    overflow-x: hidden;
}

.cd-services::before,
.cd-services::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 220px;
    transform: translateY(-50%);
    opacity: 0.045;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23f15b41' d='M50 5 L90 27.5 V72.5 L50 95 L10 72.5 V27.5 Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cd-services::before {
    left: -24px;
}

.cd-services::after {
    right: -24px;
}

.cd-services > .inner.cd-services-heading {
    display: block;
    border: none;
    box-shadow: none;
    padding: 0 1rem 1.75rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cd-services > .inner.cd-services-heading .cd-section-kicker {
    margin-bottom: 0.5rem;
}

.cd-services > .inner.cd-services-heading h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--cd-ink-mid);
}

.cd-services > .inner.cd-services-heading .cd-services-intro {
    margin: 0.85rem auto 0;
    max-width: min(52ch, 100%);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--cd-muted);
    text-align: center;
}

.cd-svc .cd-svc-tag {
    margin: 0 0 0.45rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cd-coral);
}

.cd-services .inner:not(.cd-services-heading) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--cd-line);
    background: var(--cd-bg);
    box-shadow: 0 18px 50px rgba(45, 42, 40, 0.06);
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .cd-services .inner:not(.cd-services-heading) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .cd-services .inner:not(.cd-services-heading) {
        grid-template-columns: 1fr;
    }
}

.cd-svc {
    padding: 2rem 1.25rem;
    text-align: center;
    border-right: 1px solid var(--cd-line);
    border-bottom: 1px solid var(--cd-line);
    background: var(--cd-bg);
    position: relative;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.cd-svc:last-child {
    border-right: none;
}

@media (max-width: 900px) {
    .cd-svc:nth-child(2n) {
        border-right: none;
    }
}

.cd-svc .svc-ic {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    color: var(--cd-coral);
    transition: color 0.35s ease;
}

.cd-svc h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--cd-ink-mid);
    transition: color 0.35s ease;
}

.cd-svc p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--cd-muted);
    line-height: 1.5;
    transition: color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cd-svc:hover,
    .cd-svc:focus-within {
        background: var(--cd-coral);
        border-color: var(--cd-coral);
        box-shadow: 0 16px 42px rgba(241, 91, 65, 0.32);
        transform: translateY(-3px);
        z-index: 2;
    }

    .cd-svc:hover h3,
    .cd-svc:hover p,
    .cd-svc:focus-within h3,
    .cd-svc:focus-within p {
        color: #fff;
    }

    .cd-svc:hover .svc-ic,
    .cd-svc:focus-within .svc-ic {
        color: #fff;
    }
}

@media (hover: none) {
    .cd-svc:focus-within {
        background: var(--cd-coral);
        border-color: var(--cd-coral);
    }

    .cd-svc:focus-within h3,
    .cd-svc:focus-within p {
        color: #fff;
    }

    .cd-svc:focus-within .svc-ic {
        color: #fff;
    }
}

/* —— Por qué (bloques imagen + texto + flecha, tipo Codesk) —— */
.cd-section-kicker {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cd-coral);
    margin: 0 0 0.65rem;
}

.cd-why {
    padding: 4rem 0;
    background: var(--cd-bg-warm);
    position: relative;
    overflow: hidden;
}

.cd-why::before,
.cd-why::after {
    content: "";
    position: absolute;
    top: 20%;
    width: 90px;
    height: 260px;
    opacity: 0.04;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23f15b41' d='M50 5 L90 27.5 V72.5 L50 95 L10 72.5 V27.5 Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cd-why::before {
    left: -20px;
}

.cd-why::after {
    right: -20px;
}

.cd-why .inner {
    position: relative;
    z-index: 1;
}

.cd-why h2 {
    text-align: center;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 2.5rem;
    color: var(--cd-ink-mid);
}

.cd-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .cd-why-grid {
        grid-template-columns: 1fr;
    }
}

.cd-why-card {
    background: var(--cd-bg);
    border: 1px solid var(--cd-line);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cd-why-card:hover {
        box-shadow: 0 20px 52px rgba(45, 42, 40, 0.1);
        transform: translateY(-4px);
    }
}

.cd-why-card .ph {
    height: 200px;
    overflow: hidden;
}

.cd-why-card .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cd-why-card .bd {
    padding: 1.35rem 1.25rem 1.5rem;
    position: relative;
}

.cd-why-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cd-ink-mid);
}

.cd-why-card p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--cd-muted);
}

.cd-why-card .arrow {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 28px;
    height: 28px;
    color: var(--cd-coral);
    opacity: 0.95;
    transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cd-why-card:hover .arrow {
        transform: translateX(8px);
    }
}

/* Tres pilares (jornada / actividad / ausencias): icono + mini captura */
.cd-why-card--pillar .cd-why-visual {
    padding: 1rem 1rem 0;
    background: linear-gradient(180deg, #eef2f6 0%, #ffffff 100%);
    border-bottom: 1px solid var(--cd-line);
}

.cd-why-card--pillar .cd-why-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    color: var(--cd-coral);
}

.cd-why-card--pillar .cd-why-shot-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--cd-line);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.07);
    background: #fff;
}

.cd-why-card--pillar .cd-why-shot {
    display: block;
    width: 100%;
    height: 132px;
    object-fit: cover;
    object-position: top center;
}

.cd-why-card--pillar .bd {
    padding-top: 1.15rem;
}

.cd-why-card--pillar h3 {
    font-size: 1.02rem;
    line-height: 1.35;
}

/* —— Cómo funciona (pasos, sin franja decorativa) —— */
.cd-how {
    padding: 3.75rem 0;
    background: var(--cd-bg);
    border-top: 1px solid var(--cd-line);
    border-bottom: 1px solid var(--cd-line);
}

.cd-how h2 {
    text-align: center;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    margin: 0 0 2rem;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-how-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .cd-how-steps {
        grid-template-columns: 1fr;
    }
}

.cd-how-step {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: var(--cd-bg-warm);
    border: 1px solid var(--cd-line);
    padding: 1.2rem 1.1rem 1.25rem;
    border-radius: 2px;
    min-height: 100%;
    transition: box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cd-how-step:hover {
        box-shadow: 0 12px 36px rgba(45, 42, 40, 0.08);
    }
}

.cd-how-n {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cd-coral);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: grid;
    place-items: center;
    line-height: 1;
}

.cd-how-body h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--cd-ink-mid);
    line-height: 1.3;
}

.cd-how-body p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--cd-muted);
    line-height: 1.55;
}

/* —— Explorar accesos (layout Codesk: imagen “sale” + texto, rejilla 2×2) —— */
.cd-explore {
    padding: 4rem 0;
    background: #fdf5f2;
    position: relative;
    overflow: hidden;
}

.cd-explore::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: min(48%, 440px);
    height: 180px;
    opacity: 0.09;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath fill='none' stroke='%23c4bbb6' stroke-width='0.6' d='M28 4 L50 15 V41 L28 52 L6 41 V15 Z'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cd-explore .cd-section-kicker {
    margin-bottom: 0.5rem;
}

.cd-explore h2 {
    text-align: center;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: var(--cd-ink-mid);
    position: relative;
    z-index: 1;
}

.cd-explore-intro {
    text-align: center;
    margin: 0 auto 2.35rem;
    max-width: min(56ch, 100%);
    font-size: 0.98rem;
    line-height: 1.68;
    color: var(--cd-muted);
    position: relative;
    z-index: 1;
}

.cd-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .cd-explore-grid {
        grid-template-columns: 1fr;
    }
}

.cd-explore-secondary {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(232, 228, 225, 0.9);
    position: relative;
    z-index: 1;
}

.cd-explore-secondary-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.cd-explore-secondary-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cd-muted);
    margin: 0 0 0.4rem;
}

.cd-explore-secondary-desc {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--cd-muted);
    line-height: 1.55;
}

.cd-explore-panel-btn {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 0.35rem;
}

.cd-space {
    background: var(--cd-bg);
    border: 1px solid var(--cd-line);
    box-shadow: 0 14px 42px rgba(45, 42, 40, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cd-space:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 55px rgba(45, 42, 40, 0.11);
    }
}

.cd-space--horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: visible;
    min-height: 0;
}

.cd-space--horizontal .thumb {
    flex: 0 0 44%;
    max-width: 44%;
    min-height: 260px;
    position: relative;
    margin: -14px 0 -14px -14px;
    align-self: center;
    overflow: visible;
}

.cd-space--horizontal .thumb img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 40px rgba(45, 42, 40, 0.18);
}

.cd-space--horizontal .body {
    padding: 1.35rem 1.15rem 1.35rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cd-space--horizontal h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cd-ink-mid);
}

.cd-space-desc {
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    color: var(--cd-muted);
    line-height: 1.55;
    flex: 1;
}

.cd-space-list {
    margin: 0 0 0.85rem;
    padding-left: 1.1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--cd-muted);
}

.cd-space-list li {
    margin-bottom: 0.35rem;
}

.cd-space-list li:last-child {
    margin-bottom: 0;
}

.cd-space-list--secondary {
    padding-top: 0.35rem;
    margin-top: 0.25rem;
    border-top: 1px dashed rgba(45, 42, 40, 0.12);
    font-size: 0.78rem;
    opacity: 0.95;
}

.cd-space-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--cd-line);
}

.cd-space-amenity {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--cd-muted);
}

.cd-space-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cd-coral);
}

.cd-btn-more {
    align-self: flex-start;
    font-size: 0.8rem;
    padding: 0.55rem 1.15rem;
}

@media (max-width: 520px) {
    .cd-space--horizontal {
        flex-direction: column;
    }

    .cd-space--horizontal .thumb {
        max-width: none;
        width: 100%;
        margin: 0;
        min-height: 180px;
    }

    .cd-space--horizontal .thumb img {
        min-height: 180px;
    }
}

/* —— CTA ancho completo (3 columnas + decoración tipo Codesk) —— */
.cd-cta {
    background: var(--cd-coral);
    color: #fff;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cd-cta::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    opacity: 0.55;
    pointer-events: none;
}

.cd-cta::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 90px;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' d='M10 40 Q30 10 50 40 T90 40'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' d='M15 55 Q40 35 60 55 T95 50'/%3E%3C/svg%3E")
        center/contain no-repeat;
}

.cd-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cd-cta-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.28;
}

.cd-cta-action {
    white-space: nowrap;
}

@media (max-width: 960px) {
    .cd-cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cd-cta-action {
        justify-self: center;
    }

    .cd-cta::before,
    .cd-cta::after {
        opacity: 0.22;
    }
}

/* —— Antes / Ahora + demo visual (sustituye sección Equipo) —— */
.cd-compare {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--cd-line);
}

.cd-compare .cd-section-kicker {
    text-align: center;
    margin-bottom: 0.5rem;
}

.cd-compare h2 {
    text-align: center;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0 0 0.85rem;
    font-weight: 700;
    color: var(--cd-ink-mid);
}

.cd-compare-intro {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: min(48ch, 100%);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--cd-muted);
}

.cd-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 920px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .cd-compare-grid {
        grid-template-columns: 1fr;
    }
}

.cd-compare-col {
    padding: 1.35rem 1.25rem 1.4rem;
    border: 1px solid var(--cd-line);
    border-radius: 2px;
    background: var(--cd-bg-warm);
}

.cd-compare-col--before {
    border-left: 4px solid #c4bbb6;
}

.cd-compare-col--after {
    border-left: 4px solid var(--cd-coral);
    background: #fff;
    box-shadow: 0 12px 40px rgba(45, 42, 40, 0.06);
}

.cd-compare-heading {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cd-muted);
}

.cd-compare-col--after .cd-compare-heading {
    color: var(--cd-coral);
}

.cd-compare-list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.9rem;
    line-height: 1.58;
    color: var(--cd-ink-mid);
}

.cd-compare-list li + li {
    margin-top: 0.55rem;
}

.cd-compare-demo {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.25rem 1rem;
    border: 1px dashed var(--cd-line);
    border-radius: 2px;
    background: var(--cd-bg-warm);
}

.cd-compare-demo-shots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cd-compare-demo-shots img {
    width: min(200px, 30vw);
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--cd-line);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    object-fit: cover;
    object-position: top center;
}

.cd-compare-demo-cap {
    margin: 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--cd-muted);
    line-height: 1.5;
}

/* —— Franja agilidad (imagen + overlay oscuro, estilo Codesk) —— */
.cd-agility {
    position: relative;
    padding: 4.5rem 1.5rem;
    background: #1e1c1b center/cover no-repeat;
    background-image: linear-gradient(105deg, rgba(30, 28, 27, 0.92) 0%, rgba(30, 28, 27, 0.78) 45%, rgba(30, 28, 27, 0.55) 100%),
        var(--cd-agility-img);
    color: #fff;
    text-align: center;
}

.cd-agility .inner {
    max-width: 720px;
}

.cd-agility h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.cd-agility-lead {
    margin: 0 auto 1.5rem;
    max-width: min(52ch, 100%);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

/* —— Testimonios —— */
.cd-testi-band {
    background: var(--cd-coral-soft);
    color: #fff;
    text-align: center;
    padding: 2.25rem 1rem;
    position: relative;
}

.cd-testi-band h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 700;
}

.cd-testi-band::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 14px solid var(--cd-coral-soft);
    z-index: 2;
}

.cd-testi-cards {
    background: #fef6f3;
    padding: 3rem 0 4rem;
    position: relative;
}

.cd-testi-cards::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2rem;
    width: 100px;
    height: 180px;
    opacity: 0.06;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath fill='none' stroke='%23f15b41' d='M20 2 L38 11 V29 L20 38 L2 29 V11 Z'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cd-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .cd-testi-grid {
        grid-template-columns: 1fr;
    }
}

.cd-quote {
    background: var(--cd-bg);
    padding: 2rem 1.5rem 3.5rem;
    text-align: center;
    border: 1px solid var(--cd-line);
    box-shadow: 0 8px 32px rgba(45, 42, 40, 0.06);
    position: relative;
}

.cd-quote .qm {
    font-size: 3rem;
    line-height: 1;
    color: rgba(241, 91, 65, 0.2);
    font-family: Georgia, serif;
    margin-bottom: 0.25rem;
}

.cd-quote .cd-quote-text {
    text-align: left;
    margin-bottom: 1.15rem;
}

.cd-quote .cd-quote-text p {
    margin: 0 0 0.55rem;
    font-size: 0.9rem;
    color: var(--cd-ink-mid);
    font-family: var(--font);
    font-style: normal;
    line-height: 1.58;
}

.cd-quote .cd-quote-text p:last-child {
    margin-bottom: 0;
}

.cd-quote .cd-quote-text strong {
    color: var(--cd-ink-mid);
    font-weight: 700;
}

.cd-quote .who {
    font-weight: 700;
    color: var(--cd-ink-mid);
}

.cd-quote .role {
    font-size: 0.8125rem;
    color: var(--cd-coral);
    margin-top: 0.25rem;
    font-weight: 600;
}

.cd-quote-cred {
    margin-top: 0.65rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--cd-muted);
}

.cd-quote-sep {
    margin: 0 0.25rem;
    opacity: 0.7;
}

.cd-quote .face {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* —— Cierre venta (antes del footer) —— */
.cd-close {
    padding: 3.25rem 1.5rem 3.75rem;
    background: var(--cd-bg-warm);
    border-top: 1px solid var(--cd-line);
    text-align: center;
}

.cd-close h2 {
    margin: 0 auto 1rem;
    max-width: min(38ch, 100%);
    font-size: clamp(1.35rem, 2.8vw, 1.95rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cd-ink-mid);
    letter-spacing: -0.02em;
}

.cd-close-lead {
    margin: 0 auto 1.75rem;
    max-width: min(52ch, 100%);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--cd-muted);
}

.cd-close-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
}

/* Recorrido: prueba gratis, cómo funciona, acceso */
.cd-close-actions__trial {
    order: 1;
}

.cd-close-actions__how {
    order: 2;
}

.cd-close-actions .cd-btn-access {
    order: 3;
    flex-basis: 100%;
    max-width: 17rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.2rem;
}

@media (min-width: 520px) {
    .cd-close-actions .cd-btn-access {
        flex-basis: auto;
        margin-top: 0;
    }
}

/* Bloque Cliente Windows: prueba + acceso */
.cd-explore-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
}

/* —— Contacto —— */
.cd-contact {
    padding: 4rem 0;
    background: var(--cd-bg);
}

.cd-contact .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .cd-contact .inner {
        grid-template-columns: 1fr;
    }
}

.cd-contact-intro {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.75rem;
}

.cd-contact-badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--cd-coral);
    background-image: repeating-linear-gradient(
        -42deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0) 5px,
        rgba(255, 255, 255, 0.4) 5px,
        rgba(255, 255, 255, 0.4) 9px
    );
    box-shadow: 0 6px 20px rgba(241, 91, 65, 0.35);
}

.cd-contact-tagline {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    color: var(--cd-muted);
}

.cd-contact h2 {
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0;
}

.cd-contact-note {
    font-size: 0.8125rem;
    color: #777;
    margin-top: 1rem;
}

.cd-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 520px) {
    .cd-form {
        grid-template-columns: 1fr;
    }
}

.cd-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--cd-muted);
}

.cd-form input,
.cd-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: var(--cd-bg-pink);
    font-family: inherit;
    font-size: 0.9rem;
}

.cd-form textarea {
    min-height: 130px;
    resize: vertical;
}

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

.cd-contact-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 180px;
    gap: 0.65rem;
    height: 100%;
    min-height: 320px;
}

.cd-contact-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cd-contact-photos .wide {
    grid-column: 1 / -1;
}

/* —— Footer —— */
.cd-footer {
    background: var(--cd-ink-mid);
    color: rgba(255, 255, 255, 0.82);
    padding: 3rem 0 1.5rem;
    font-size: 0.875rem;
}

.cd-footer a {
    color: #fff;
    text-decoration: none;
}

.cd-footer a:hover {
    color: var(--cd-coral);
}

.cd-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 0.8fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .cd-footer-grid {
        grid-template-columns: 1fr;
    }
}

.cd-footer h4 {
    color: #fff;
    font-size: 0.95rem;
    margin: 0 0 0.75rem;
}

.cd-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cd-footer li {
    margin-bottom: 0.45rem;
}

.cd-footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.cd-scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--cd-coral);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 300;
    box-shadow: 0 4px 16px rgba(241, 91, 65, 0.45);
}

.cd-scroll-top:hover {
    background: var(--cd-coral-hover);
}

.cd-hero-controls {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    width: 100%;
}

.cd-hero-controls .cd-btn {
    display: inline-flex;
}

@media (max-width: 900px) {
    .cd-hero-controls {
        align-self: center;
    }
}

/* Flotación del visual hero (como ilustraciones “vivas” de la plantilla) */
@keyframes cd-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Zoom suave en imágenes “why” al hover (más dinámico como Codesk) */
.cd-why-card .ph img {
    transition: transform 0.55s ease;
}

.cd-why-card:hover .ph img {
    transform: scale(1.05);
}

/* Revelado al scroll (sustituto ligero de AOS) */
.cd-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.cd-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cd-reveal-stagger > .cd-reveal:nth-child(1) {
    transition-delay: 0.05s;
}
.cd-reveal-stagger > .cd-reveal:nth-child(2) {
    transition-delay: 0.12s;
}
.cd-reveal-stagger > .cd-reveal:nth-child(3) {
    transition-delay: 0.19s;
}
.cd-reveal-stagger > .cd-reveal:nth-child(4) {
    transition-delay: 0.26s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cd-reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .cd-hero-shot img {
        animation: none;
    }

    .cd-why-card:hover .ph img {
        transform: none;
    }

    .cd-svc,
    .cd-svc:hover,
    .cd-svc:focus-within {
        transition: none;
        transform: none;
    }

    .cd-why-card,
    .cd-why-card:hover {
        transition: none;
        transform: none;
    }

    .cd-why-card:hover .arrow {
        transform: none;
    }

    .cd-space,
    .cd-space:hover {
        transition: none;
        transform: none;
    }

}

/* —— Landing marketing: /software-control-horario —— */
.cd-lp-page main {
    background: var(--cd-bg-warm);
}

.cd-lp-hero {
    padding: 2.75rem 0 3.25rem;
    background: linear-gradient(180deg, #fdfaf8 0%, #f7f3f0 55%, #fdfaf8 100%);
    border-bottom: 1px solid var(--cd-line);
}

.cd-lp-hero--app {
    background: linear-gradient(165deg, #fff9f7 0%, #f7f2ee 48%, #fdfaf8 100%);
}

.cd-lp-hero--fichaje {
    background: linear-gradient(168deg, #f8fbff 0%, #f5f0f8 50%, #fdfaf8 100%);
}

.cd-lp-hero--presencia {
    background: linear-gradient(175deg, #f9fafb 0%, #eef2f0 45%, #fdfaf8 100%);
}

.cd-lp-hero--productividad {
    background: linear-gradient(172deg, #fffbf7 0%, #f0f4f8 48%, #fdfaf8 100%);
}

.cd-lp-hero--teletrabajo {
    background: linear-gradient(170deg, #f5f9fc 0%, #eef6f4 50%, #fdfaf8 100%);
}

.cd-lp-hero--geo {
    background: linear-gradient(168deg, #f4f8fb 0%, #eef3f0 52%, #fdfaf8 100%);
}

.cd-lp-hero--informes {
    background: linear-gradient(171deg, #faf8f5 0%, #eef0f7 50%, #fdfaf8 100%);
}

.cd-lp-hero--vacaciones {
    background: linear-gradient(169deg, #f7f5fb 0%, #f0f4f0 52%, #fdfaf8 100%);
}

.cd-lp-hero--proyectos {
    background: linear-gradient(172deg, #f6f8fc 0%, #f2f0f5 48%, #fdfaf8 100%);
}

.cd-lp-hero--pymes {
    background: linear-gradient(170deg, #f9f7f4 0%, #edf2f6 50%, #fdfaf8 100%);
}

.cd-lp-hero--asesorias {
    background: linear-gradient(171deg, #f5f7fa 0%, #f0f2f8 48%, #fdfaf8 100%);
}

.cd-lp-hero--construccion {
    background: linear-gradient(173deg, #f4f6f3 0%, #ebe8e4 46%, #fdfaf8 100%);
}

.cd-lp-hero--remotos {
    background: linear-gradient(170deg, #f3f6fb 0%, #eef3f8 50%, #fdfaf8 100%);
}

.cd-lp-hero--desktime {
    background: linear-gradient(168deg, #f8f6f3 0%, #e8ecf4 52%, #fdfaf8 100%);
}

.cd-lp-hero--factorial {
    background: linear-gradient(169deg, #f7f4f8 0%, #e6eef5 50%, #fdfaf8 100%);
}

.cd-lp-hero--sesame {
    background: linear-gradient(171deg, #f5f3f0 0%, #e8eef2 55%, #fdfaf8 100%);
}

.cd-lp-hero--hubstaff {
    background: linear-gradient(168deg, #f2f5f9 0%, #e5ecf2 52%, #fdfaf8 100%);
}

.cd-lp-disclaimer {
    max-width: min(720px, 92vw);
    margin: 0 auto;
    padding: 0 1rem 1rem;
    font-size: 0.88rem;
}

.cd-lp-faq {
    margin: 0;
}

.cd-lp-faq > div {
    margin-bottom: 1.35rem;
}

.cd-lp-faq > div:last-child {
    margin-bottom: 0;
}

.cd-lp-faq dt {
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--cd-ink-mid);
    font-size: 1.02rem;
}

.cd-lp-faq dd {
    margin: 0;
    line-height: 1.65;
    color: var(--cd-ink-mid);
}

.cd-lp-page .cd-lp-inner p a:not([class]) {
    color: var(--cd-coral);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.cd-lp-page .cd-lp-inner p a:not([class]):hover {
    color: var(--cd-coral-hover);
}

.cd-lp-hero .inner {
    max-width: min(880px, 92vw);
    margin: 0 auto;
}

.cd-lp-h1 {
    font-size: clamp(1.65rem, 3.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--cd-ink-mid);
    margin: 0.35rem 0 1rem;
    letter-spacing: -0.03em;
}

.cd-lp-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--cd-ink-mid);
    margin: 0 0 1rem;
    max-width: min(62ch, 100%);
}

.cd-lp-section {
    padding: 2.75rem 0;
    border-top: 1px solid var(--cd-line);
    background: var(--cd-bg);
}

.cd-lp-section--alt {
    background: var(--cd-bg-warm);
}

.cd-lp-inner {
    max-width: min(720px, 92vw);
    margin: 0 auto;
}

.cd-lp-inner--wide {
    max-width: min(900px, 92vw);
}

.cd-lp-inner h2,
.cd-lp-inner--wide h2 {
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
    color: var(--cd-ink-mid);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.cd-lp-inner p,
.cd-lp-inner--wide p {
    margin: 0 0 1rem;
    line-height: 1.65;
    color: var(--cd-ink-mid);
}

.cd-lp-h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: var(--cd-ink-mid);
}

.cd-lp-muted {
    color: var(--cd-muted) !important;
}

.cd-lp-small {
    font-size: 0.875rem;
}

.cd-lp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .cd-lp-grid-2 {
        grid-template-columns: 1fr;
    }
}

.cd-lp-check {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cd-lp-check li {
    position: relative;
    padding-left: 1.45rem;
    margin-bottom: 0.65rem;
    line-height: 1.55;
    color: var(--cd-ink-mid);
}

.cd-lp-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05em;
    color: var(--cd-coral);
    font-weight: 800;
    font-size: 0.95em;
}

.cd-lp-table-wrap {
    overflow-x: auto;
    margin-top: 1rem;
    border-radius: 10px;
    border: 1px solid var(--cd-line);
    background: var(--cd-bg);
    box-shadow: 0 8px 28px rgba(45, 42, 40, 0.06);
}

.cd-lp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cd-lp-table th,
.cd-lp-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--cd-line);
}

.cd-lp-table th {
    background: rgba(241, 91, 65, 0.07);
    color: var(--cd-ink-mid);
    font-weight: 700;
}

.cd-lp-table tbody tr:last-child th,
.cd-lp-table tbody tr:last-child td {
    border-bottom: none;
}

.cd-lp-page .cd-close .inner {
    max-width: min(640px, 92vw);
}

.cd-lp-page .cd-close-actions .cd-btn-access {
    order: 3;
}

/* Banner de cookies (marketing + home) */
.cd-cookie-banner {
    position: fixed;
    z-index: 99999;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1rem max(1rem, env(safe-area-inset-bottom));
    background: rgba(45, 42, 40, 0.97);
    color: #f5f0ee;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.cd-cookie-banner.is-visible {
    transform: translateY(0);
}

.cd-cookie-banner__inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cd-cookie-banner__inner {
        grid-template-columns: 1fr auto;
    }
}

.cd-cookie-banner p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #e8e2df;
}

.cd-cookie-banner a {
    color: #ffb4a8;
    text-decoration: underline;
}

.cd-cookie-banner__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cd-cookie-banner__btns button {
    padding: 0.55rem 0.95rem;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.cd-cookie-banner__btns .cd-cb-accept {
    background: var(--cd-coral);
    color: #fff;
}

.cd-cookie-banner__btns .cd-cb-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cd-cookie-banner__btns .cd-cb-config {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
