

/* ============================================================
   DESDE CONTIGO — Design System
   Paleta: Rosa palo (#E8A0B4), Ciruela (#3D0A2E), Blanco cálido (#FDF8F9)
   Tipografía: Cormorant Garamond (display) + Montserrat (body)
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */

html, body {
    height: 100%;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .page > main {
        flex: 1 0 auto;
    }

/* Tu footer ya tiene estilos de colores; aquí solo aseguramos posición */
.footer {
    width: 100%;
    flex-shrink: 0;
}
:root {
    --plum: #3D0A2E;
    --plum-light: #6B1A52;
    --rose: #E8A0B4;
    --rose-light: #F5D0DC;
    --rose-pale: #FBF0F4;
    --cream: #FDF8F9;
    --white: #FFFFFF;
    --text: #2A0820;
    --text-soft: #7A5570;
    --text-muted: #B08CA0;
    --border: #F0D8E5;
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Montserrat', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 48px;
    --shadow-sm: 0 2px 12px rgba(61,10,46,.07);
    --shadow-md: 0 8px 32px rgba(61,10,46,.12);
    --shadow-lg: 0 20px 60px rgba(61,10,46,.16);
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
    --nav-h: 72px;
    /* forma orgánica estática de marca — reemplaza los "blobs" animados */
    --organic-radius: 34% 66% 68% 32% / 38% 32% 68% 62%;
}

/* ── ICONOS DE LÍNEA (reemplazan los emojis) ───────────────── */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: -0.125em;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}


/* ── LAYOUT ──────────────────────────────────────────────── */
.section-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

em {
    font-style: italic;
}

.section-eyebrow {
    font-family: var(--ff-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .75rem;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

    .section-header h2 {
        margin-bottom: 1rem;
    }

.section-desc {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.section-action {
    text-align: center;
    margin-top: 3rem;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--plum);
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .04em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
}

    .btn-primary:hover {
        background: var(--plum-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--plum);
    padding: .85rem 2rem;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--rose);
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .04em;
    transition: all var(--transition);
}

    .btn-ghost:hover {
        background: var(--rose-pale);
        border-color: var(--plum);
        transform: translateY(-2px);
    }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(253, 248, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

    .navbar.scrolled {
        box-shadow: var(--shadow-sm);
    }

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--plum);
}

.logo-desde, .logo-contigo {
    color: var(--plum);
    letter-spacing: .02em;
}

.logo-o {
    color: var(--rose);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-link {
    padding: .45rem .85rem;
    border-radius: var(--radius-xl);
    font-size: .875rem;
    font-weight: 400;
    color: var(--text-soft);
    transition: color var(--transition), background var(--transition);
}

    .nav-link:hover {
        color: var(--plum);
        background: var(--rose-pale);
    }

.nav-cta {
    margin-left: .75rem;
    padding: .55rem 1.35rem;
    border-radius: var(--radius-xl);
    background: var(--plum);
    color: var(--white) !important;
    font-size: .875rem;
    font-weight: 500;
    transition: background var(--transition), transform var(--transition);
}

    .nav-cta:hover {
        background: var(--plum-light);
        transform: translateY(-1px);
    }

/* Hamburger */
.nav-toggle {
    display: none;
    padding: .5rem;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--plum);
    position: relative;
    transition: background var(--transition);
}

    .hamburger::before, .hamburger::after {
        content: '';
        position: absolute;
        width: 22px;
        height: 2px;
        background: var(--plum);
        transition: transform var(--transition);
    }

    .hamburger::before {
        top: -7px;
    }

    .hamburger::after {
        top: 7px;
    }

    .hamburger.open {
        background: transparent;
    }

        .hamburger.open::before {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.open::after {
            transform: rotate(-45deg) translate(5px, -5px);
        }


.psicologa-avatar {
    position: relative;
    overflow: hidden;
}

.av-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    position: relative;
    z-index: 1;
}

/* Halo de color sutil sobre la foto, mismo estilo del blob del hero */
.psicologa-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 30% 20%, transparent 45%, rgba(232, 160, 180, 0.18) 80%, rgba(61, 10, 46, 0.15) 100% );
    pointer-events: none;
    z-index: 2;
}

/* El anillo decorativo debe quedar por encima de todo */
.av-ring {
    z-index: 3;
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: calc(var(--nav-h) + 4rem) 1.5rem 5rem;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.hero-bg-deco {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    opacity: .6;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
    bottom: 100px;
    left: -100px;
    opacity: .35;
}

.deco-petal {
    position: absolute;
    font-size: 2.75rem;
    color: var(--plum);
    opacity: .09;
    animation: float 11s ease-in-out infinite;
}

.petal-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.petal-2 {
    top: 60%;
    right: 8%;
    animation-delay: 2.5s;
}

.petal-3 {
    bottom: 15%;
    left: 40%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.hero-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--plum);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 440px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-soft);
    font-weight: 400;
}

.trust-icon {
    font-size: 1.15rem;
    color: var(--rose);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 3rem; /* da espacio arriba para que la card no se monte sobre el blob */
}

.hero-blob {
    width: 400px;
    height: 400px; /* más ancho para que no se corten los rostros al recortar la foto */
    border-radius: var(--organic-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose-pale) 60%);
    z-index: 1;
}


.blob-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .blob-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 22%;
        filter: saturate(1.05) contrast(1.02);
    }

    .blob-inner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 30% 20%, transparent 35%, rgba(232, 160, 180, 0.22) 75%, rgba(61, 10, 46, 0.18) 100% );
        pointer-events: none;
    }

    .blob-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.55);
        pointer-events: none;
        z-index: 2;
    }

.blob-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}

.blob-desde, .blob-contigo {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum);
}

.blob-symbol {
    font-size: 2.5rem;
    color: var(--plum);
}

.hero-card {
    position: absolute;
    top: -0.5rem;
    right: -2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    z-index: 10;
    max-width: 220px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.psicologa-quote {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--plum);
    border-left: 3px solid var(--rose);
    padding-left: 1.25rem;
    margin: 1.5rem 0 2rem;
    line-height: 1.6;
}

.hcard-icon {
    font-size: 1.5rem;
    color: var(--rose);
    margin-bottom: .5rem;
}

.hcard-text {
    font-family: var(--ff-display);
    font-size: .9rem;
    font-style: italic;
    color: var(--plum);
    line-height: 1.4;
}

.floating {
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================================
   VALORES
   ============================================================ */
.valores {
    background: var(--white);
    padding: 5rem 1.5rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

.valor-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .valor-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .valor-card.featured {
        background: var(--plum);
        border-color: var(--plum);
        color: var(--white);
    }

        .valor-card.featured h3 {
            color: var(--white);
        }

        .valor-card.featured p {
            color: rgba(255,255,255,.8);
        }

.valor-icon {
    font-size: 2.25rem;
    color: var(--rose);
    margin-bottom: 1.25rem;
}

.valor-card.featured .valor-icon {
    color: var(--rose-light);
}

.valor-card h3 {
    margin-bottom: .75rem;
}

.valor-card p {
    font-size: .95rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ============================================================
   NOSOTRAS
   ============================================================ */
.nosotras {
    padding: 2rem 1.5rem;
    background: var(--cream);
}

.nosotras-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.nosotras-blob {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    border-radius: var(--organic-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.nosotras-inner {
    text-align: center;
    padding: 2rem;
}

    .nosotras-inner .nosotras-emoji {
        font-size: 2.25rem;
        color: var(--rose-light);
        display: block;
        margin-bottom: .75rem;
    }

.nosotras-quote-inner {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,.9);
    line-height: 1.4;
}

.nosotras-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.nosotras-deco-card {
    position: absolute;
    bottom: -1rem;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.ndeco-icon {
    font-size: 1.5rem;
    color: var(--rose);
}

.nosotras-deco-card strong {
    display: block;
    font-size: 1rem;
    color: var(--plum);
}

.nosotras-deco-card span {
    font-size: .8rem;
    color: var(--text-muted);
}

.nosotras-content h2 {
    margin-bottom: 1.25rem;
}

.nosotras-content p {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.nosotras-valores-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: 1.75rem;
}

.nv-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: var(--text);
}

.nv-check {
    width: 22px;
    height: 22px;
    background: var(--rose-pale);
    color: var(--plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios {
    padding: 2rem 1.5rem;
    background: var(--white);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1140px;
    margin: 0 auto;
}

.servicio-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    background: var(--cream);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

    .servicio-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .servicio-card.featured {
        background: var(--plum);
        border-color: var(--plum);
        color: var(--white);
    }

        .servicio-card.featured h3 {
            color: var(--white);
        }

        .servicio-card.featured p {
            color: rgba(255,255,255,.8);
        }

        .servicio-card.featured .servicio-features li {
            color: rgba(255,255,255,.7);
        }

            .servicio-card.featured .servicio-features li::before {
                color: var(--rose-light);
            }

        .servicio-card.featured .servicio-link {
            color: var(--rose-light);
        }

.servicio-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: var(--white);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: var(--radius-xl);
    white-space: nowrap;
}

.servicio-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.servicio-card h3 {
    margin-bottom: .75rem;
}

.servicio-card > p {
    font-size: .95rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.servicio-features {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

    .servicio-features li {
        font-size: .875rem;
        color: var(--text-soft);
        padding-left: 1.25rem;
        position: relative;
    }

        .servicio-features li::before {
            content: '·';
            position: absolute;
            left: 0;
            color: var(--rose);
            font-weight: 700;
        }

.servicio-link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--plum);
    transition: gap var(--transition);
}

    .servicio-link:hover {
        text-decoration: underline;
    }

/* ============================================================
   PUBLICACIONES PREVIEW
   ============================================================ */
.publicaciones-preview {
    padding: 2rem 1.5rem;
    background: var(--rose-pale);
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1140px;
    margin: 0 auto;
}

.pub-grid-full {
    grid-template-columns: repeat(3, 1fr);
}

.pub-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .pub-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.pub-emoji {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pub-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.pub-categoria {
    background: var(--rose-pale);
    color: var(--plum);
    padding: .2rem .65rem;
    border-radius: var(--radius-xl);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.pub-tiempo {
    font-size: .78rem;
    color: var(--text-muted);
}

.pub-titulo {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--plum);
    margin-bottom: .75rem;
}

.pub-resumen {
    font-size: .9rem;
    color: var(--text-soft);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pub-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.pub-autor {
    display: flex;
    align-items: center;
    gap: .2rem;
}

    .pub-autor strong {
        display: block;
        font-size: .82rem;
        color: var(--plum);
    }

    .pub-autor span {
        font-size: .75rem;
        color: var(--text-muted);
    }

.pub-autor-inicial {
    width: 34px;
    height: 34px;
    background: var(--rose-light);
    color: var(--plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

    .pub-autor-inicial.large {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

.pub-link {
    font-size: .85rem;
    font-weight: 500;
    color: var(--plum);
    transition: color var(--transition);
}

    .pub-link:hover {
        color: var(--rose);
    }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios {
    padding: 2rem 1.5rem;
    background: var(--white);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1140px;
    margin: 0 auto;
}

.testimonio-card {
    padding: 2.25rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--cream);
    transition: transform var(--transition);
}

    .testimonio-card:hover {
        transform: translateY(-3px);
    }

    .testimonio-card.featured {
        background: var(--plum);
        border-color: var(--plum);
    }

        .testimonio-card.featured .testimonio-texto {
            color: rgba(255,255,255,.9);
        }

        .testimonio-card.featured .testimonio-autor strong {
            color: var(--white);
        }

        .testimonio-card.featured .testimonio-autor span {
            color: rgba(255,255,255,.6);
        }

        .testimonio-card.featured .testimonio-inicial {
            background: rgba(255,255,255,.15);
            color: var(--white);
        }

.testimonio-stars {
    color: var(--rose);
    font-size: 1rem;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}

.testimonio-card.featured .testimonio-stars {
    color: #F5D0DC;
}

.testimonio-texto {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonio-inicial {
    width: 38px;
    height: 38px;
    background: var(--rose-pale);
    color: var(--plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}

.testimonio-autor strong {
    display: block;
    font-size: .875rem;
    color: var(--plum);
}

.testimonio-autor span {
    font-size: .78rem;
    color: var(--text-muted);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
    padding: 2rem 1.5rem;
    background: var(--cream);
}

.contacto-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.contacto-content h2 {
    margin-bottom: 1.25rem;
}

.contacto-content > p {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.contacto-canales {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.canal-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

    .canal-card:hover {
        transform: translateX(4px);
        box-shadow: var(--shadow-sm);
        border-color: var(--rose);
    }

    .canal-card strong {
        display: block;
        font-size: .95rem;
        color: var(--plum);
        margin-bottom: .15rem;
    }

    .canal-card span {
        font-size: .82rem;
        color: var(--text-muted);
    }

    .canal-card svg {
        flex-shrink: 0;
        color: var(--rose);
    }

.cdeco-blob {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--plum-light) 100%);
    border-radius: var(--organic-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.cdeco-inner {
    text-align: center;
    padding: 2rem;
}

.cdeco-emoji {
    font-size: 2.5rem;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
}

.cdeco-inner p {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,.95);
    line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--plum);
    color: rgba(255,255,255,.85);
    padding: 5rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.footer-valores {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--rose-light);
    letter-spacing: .08em;
}

.dot {
    color: rgba(255,255,255,.3);
}

.footer-links h4 {
    font-family: var(--ff-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.footer-links a {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
}

    .footer-links a:hover {
        color: var(--white);
    }

.footer-contact h4 {
    font-family: var(--ff-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    margin-bottom: .75rem;
    transition: color var(--transition);
}

    .footer-contact-item:hover {
        color: var(--white);
    }

    .footer-contact-item svg {
        flex-shrink: 0;
        color: var(--rose-light);
    }

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-bottom p {
        font-size: .8rem;
        color: rgba(255,255,255,.45);
    }

.footer-disclaimer {
    max-width: 480px;
    line-height: 1.5;
}

    .footer-disclaimer a {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color var(--transition);
    }

        .footer-disclaimer a:hover {
            color: var(--rose-light);
        }

/* ============================================================
   PUBLICACIONES PAGE
   ============================================================ */
.pub-page-hero {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
    text-align: center;
}

    .pub-page-hero .section-eyebrow {
        color: var(--rose-light);
    }

    .pub-page-hero h1 {
        color: var(--white);
        margin-bottom: 1rem;
    }

.pub-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.pub-page-content {
    padding: 4rem 1.5rem 2rem;
}

.filtros-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 3rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.filtro-btn {
    padding: .45rem 1rem;
    border-radius: var(--radius-xl);
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-soft);
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
}

    .filtro-btn:hover, .filtro-btn.active {
        background: var(--plum);
        color: var(--white);
        border-color: var(--plum);
    }

.pub-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-soft);
}

    .pub-empty span {
        font-size: 3rem;
        display: block;
        margin-bottom: 1rem;
    }

    .pub-empty p {
        margin-bottom: 1.5rem;
    }

/* ============================================================
   ARTÍCULO INDIVIDUAL
   ============================================================ */
.articulo-page {
    padding-top: var(--nav-h);
}

.articulo-hero {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    padding: 4rem 1.5rem 5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 2rem;
    transition: color var(--transition);
}

    .back-link:hover {
        color: var(--white);
    }

.articulo-meta {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.articulo-titulo {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 760px;
}

.articulo-resumen {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.articulo-autor-bar {
    display: flex;
    align-items: center;
    gap: .85rem;
}

    .articulo-autor-bar strong {
        display: block;
        font-size: .95rem;
        color: var(--white);
    }

    .articulo-autor-bar span {
        font-size: .8rem;
        color: rgba(255,255,255,.6);
    }

.articulo-body {
    padding: 4rem 1.5rem 5rem;
}

.articulo-content-wrap {
    max-width: 760px;
}

.articulo-emoji-grande {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.articulo-contenido p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.articulo-cta-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--rose-pale);
    border: 1.5px solid var(--rose-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.acta-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.articulo-cta-box > div {
    flex: 1;
    min-width: 200px;
}

.articulo-cta-box strong {
    display: block;
    font-size: 1.05rem;
    color: var(--plum);
    margin-bottom: .35rem;
}

.articulo-cta-box p {
    font-size: .9rem;
    color: var(--text-soft);
}

.mas-articulos {
    padding: 4rem 1.5rem 5rem;
    background: var(--rose-pale);
}

    .mas-articulos h2 {
        text-align: center;
        margin-bottom: 3rem;
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: calc(var(--nav-h) + 3rem);
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .nosotras-layout {
        grid-template-columns: 1fr;
    }

    .nosotras-visual {
        display: none;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pub-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contacto-layout {
        grid-template-columns: 1fr;
    }

    .contacto-deco {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: .25rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

        .nav-links.open {
            display: flex;
        }

    .nav-link {
        padding: .75rem 1rem;
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: .5rem;
    }

    .nav-toggle {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
    }

    .articulo-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .pub-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ── Accessibility ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

:focus-visible {
    outline: 2.5px solid var(--rose);
    outline-offset: 3px;
    border-radius: 4px;
}


html, body {
    height: 100%;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    /* main es la zona entre navbar y footer */
    .page > main {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
    }

/* el contenido real de la página crece dentro de main */
.page-content {
    flex: 1 0 auto;
}

/* el footer siempre al final de la columna, ancho completo */
.footer {
    width: 100%;
    flex-shrink: 0;
}

/* ============================================================
   NOSOTRAS PAGE — Estilos específicos
   Depende de las variables del app.css (:root)
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.npage-hero {
    position: relative;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    padding: calc(var(--nav-h) + 5rem) 1.5rem 5rem;
    text-align: center;
    overflow: hidden;
}

    .npage-hero .section-eyebrow {
        color: var(--rose-light);
    }

    .npage-hero h1 {
        color: var(--white);
        margin-bottom: 1.25rem;
    }

        .npage-hero h1 em {
            font-style: italic;
        }

.npage-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.npage-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.np-petal {
    position: absolute;
    font-size: 2.75rem;
    color: var(--white);
    opacity: .16;
    animation: float 11s ease-in-out infinite;
}

    .np-petal.p1 {
        top: 18%;
        left: 6%;
        animation-delay: 0s;
    }

    .np-petal.p2 {
        top: 55%;
        right: 8%;
        animation-delay: 2.5s;
    }

    .np-petal.p3 {
        bottom: 12%;
        left: 38%;
        animation-delay: 5s;
    }

/* ── MISIÓN ────────────────────────────────────────────────── */
.npage-mision {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.mision-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    max-width: 1140px;
    margin: 0 auto;
}

.mision-card {
    flex: 0 1 340px;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .mision-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(61,10,46,.1);
    }

    .mision-card.featured {
        background: var(--plum);
        border-color: var(--plum);
    }

        .mision-card.featured h3 {
            color: var(--white);
        }

        .mision-card.featured p {
            color: rgba(255,255,255,.78);
        }

.mision-icon {
    font-size: 2.1rem;
    color: var(--rose);
    margin-bottom: 1.25rem;
}

.mision-card.featured .mision-icon {
    color: var(--rose-light);
}

.mision-card h3 {
    margin-bottom: .75rem;
}

.mision-card p {
    font-size: .95rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ── PSICÓLOGAS ────────────────────────────────────────────── */
.npage-psicologas {
    padding: 2rem 1.5rem;
    background: var(--cream);
}

.psicologa-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 0;
}

    .psicologa-card.reverse {
        grid-template-columns: 1fr 280px;
    }

        .psicologa-card.reverse .psicologa-visual {
            order: 2;
        }

        .psicologa-card.reverse .psicologa-info {
            order: 1;
        }

/* Avatar */
.psicologa-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.psicologa-avatar {
    width: 200px;
    height: 200px;
    border-radius: var(--organic-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.av-plum {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
}

.av-rose {
    background: linear-gradient(135deg, var(--rose) 0%, #c96a8a 100%);
}

.av-inicial {
    font-family: var(--ff-display);
    font-size: 5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    line-height: 1;
    z-index: 1;
}

.av-ring {
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1.5px solid var(--rose);
    opacity: .5;
}

/* Stats */
.psicologa-stats {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.pstat {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: .6rem;
    text-align: center;
}

    .pstat strong {
        display: block;
        font-family: var(--ff-display);
        font-size: 1.4rem;
        color: var(--plum);
        margin-bottom: .2rem;
    }

    .pstat span {
        font-size: .78rem;
        color: var(--text-muted);
    }

/* Info */
.psicologa-rol {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--plum);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.psicologa-nombre {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--plum);
    margin-bottom: 1.25rem;
}

.psicologa-bio {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.78;
    margin-bottom: 1rem;
}

/* Especialidades */
.psicologa-especialidades {
    margin: 1.75rem 0;
}

    .psicologa-especialidades h4,
    .psicologa-formacion h4 {
        font-family: var(--ff-body);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--rose);
        margin-bottom: .85rem;
    }

.esp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

    .esp-tags span {
        background: var(--rose-pale);
        color: var(--plum);
        border: 1px solid var(--rose-light);
        border-radius: 99px;
        padding: .3rem .85rem;
        font-size: .82rem;
        font-weight: 400;
    }

/* Formación */
.psicologa-formacion {
    margin-bottom: 2rem;
}

    .psicologa-formacion ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .psicologa-formacion li {
        display: flex;
        align-items: flex-start;
        gap: .85rem;
    }

        .psicologa-formacion li > span:first-child {
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: .1rem;
        }

        .psicologa-formacion li strong {
            display: block;
            font-size: .9rem;
            color: var(--plum);
            margin-bottom: .15rem;
        }

        .psicologa-formacion li span {
            font-size: .82rem;
            color: var(--text-muted);
        }

/* Divisor */
.psicologa-divisor {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 5rem 0;
}

.divisor-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.psicologa-divisor > span {
    font-size: 1.35rem;
    color: var(--rose);
    opacity: .6;
}

/* ── VALORES ───────────────────────────────────────────────── */
.npage-valores {
    padding: 2rem 1.5rem;
    background: var(--white);
}

.nvalores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

.nvalor-card {
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .nvalor-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 28px rgba(61,10,46,.1);
    }

.nvalor-num {
    display: block;
    font-family: var(--ff-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rose);
    opacity: .5;
    margin-bottom: .75rem;
    line-height: 1;
}

.nvalor-card h3 {
    font-size: 1.1rem;
    margin-bottom: .65rem;
}

.nvalor-card p {
    font-size: .9rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ── CTA FINAL ─────────────────────────────────────────────── */
.npage-cta {
    padding: 2rem 1.5rem;
    background: var(--rose-pale);
}

.npage-cta-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.ncta-emoji {
    font-size: 2.5rem;
    color: var(--rose);
    display: block;
    margin-bottom: 1.5rem;
}

.npage-cta-inner h2 {
    margin-bottom: 1rem;
}

.npage-cta-inner p {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ncta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mision-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .psicologa-card,
    .psicologa-card.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

        .psicologa-card.reverse .psicologa-visual,
        .psicologa-card.reverse .psicologa-info {
            order: unset;
        }

    .psicologa-visual {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .psicologa-avatar {
        width: 160px;
        height: 160px;
    }

    .av-inicial {
        font-size: 4rem;
    }

    .nvalores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .nvalores-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .psicologa-stats {
        flex-direction: column;
        width: auto;
    }

    .ncta-actions {
        flex-direction: column;
        align-items: center;
    }
}
/* ============================================================
   INSTAGRAM FEED — Carrusel
   Usa las variables de app.css (:root)
   ============================================================ */

.ig-feed {
    --card-w: 280px;
    --card-h: 280px;
    --gap: 1.25rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Loading ─────────────────────────────────────────────── */
.ig-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 1rem;
    color: var(--text-muted);
    font-size: .9rem;
}

.ig-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--rose-light);
    border-top-color: var(--plum);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Empty / Error ───────────────────────────────────────── */
.ig-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-soft);
}

    .ig-empty span {
        display: block;
        font-size: 2.25rem;
        color: var(--rose);
        margin-bottom: .75rem;
        opacity: .5;
    }

    .ig-empty p {
        font-size: .95rem;
    }

/* ── Wrapper ─────────────────────────────────────────────── */

.ig-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    width: 100%;
    max-width: 100%;
}



/* ── Track ───────────────────────────────────────────────── */
.ig-track-clip {
    flex: 1;
    overflow: hidden;
    max-width: calc((var(--card-w) * 3) + (var(--gap) * 2));
}



.ig-track {
    display: flex;
    gap: var(--gap);
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* ── Card ────────────────────────────────────────────────── */
.ig-card {
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    height: var(--card-h);
    border-radius: 20px;
    overflow: hidden;
    display: block;
    position: relative;
    box-shadow: 0 4px 20px rgba(61, 10, 46, .10);
    border: 1.5px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
    background: var(--rose-pale);
}

    .ig-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 16px 40px rgba(61, 10, 46, .18);
    }

/* ── Imagen ──────────────────────────────────────────────── */
.ig-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

    .ig-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

.ig-card:hover .ig-img-wrap img {
    transform: scale(1.06);
}

/* ── Overlay ─────────────────────────────────────────────── */
.ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(61, 10, 46, .82) 0%, rgba(61, 10, 46, .25) 50%, transparent 100% );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity .35s ease;
}

.ig-card:hover .ig-overlay {
    opacity: 1;
}

.ig-icon-insta {
    color: var(--rose-light);
    margin-bottom: .2rem;
    flex-shrink: 0;
}

.ig-overlay-caption {
    font-size: .8rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Botones nav ─────────────────────────────────────────── */
.ig-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 2px 10px rgba(61, 10, 46, .08);
}

    .ig-nav:hover:not(:disabled) {
        background: var(--plum);
        border-color: var(--plum);
        color: var(--white);
        transform: scale(1.08);
        box-shadow: 0 4px 16px rgba(61, 10, 46, .2);
    }

    .ig-nav:disabled {
        opacity: .3;
        cursor: not-allowed;
    }

/* ── Dots ────────────────────────────────────────────────── */
.ig-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
}

.ig-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose-light);
    border: none;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, width .25s ease;
    padding: 0;
}

    .ig-dot.active {
        background: var(--plum);
        width: 24px;
        border-radius: 4px;
        transform: none;
    }

    .ig-dot:hover:not(.active) {
        background: var(--rose);
        transform: scale(1.2);
    }

/* ── Link al perfil ──────────────────────────────────────── */
.ig-profile-link {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

    .ig-profile-link a {
        display: inline-flex;
        align-items: center;
        gap: .2rem;
        font-size: .875rem;
        font-weight: 500;
        color: var(--plum);
        border: 1.5px solid var(--border);
        padding: .2rem 1.4rem;
        border-radius: 99px;
        background: var(--white);
        transition: all .25s ease;
    }

        .ig-profile-link a:hover {
            background: var(--plum);
            color: var(--white);
            border-color: var(--plum);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(61, 10, 46, .15);
        }

    .ig-profile-link svg {
        color: var(--rose);
        transition: color .25s ease;
    }

    .ig-profile-link a:hover svg {
        color: var(--rose-light);
    }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .ig-feed {
        --card-w: 220px;
        --card-h: 220px;
    }
}

@media (max-width: 600px) {
    .ig-feed {
        --card-w: calc(100vw - 2rem);
        --card-h: calc(100vw - 2rem);
    }

    .ig-nav {
        width: 36px;
        height: 36px;
    }
}

/* ── Centrado general del feed ───────────────────────────── */
.ig-feed {
    --card-w: 280px;
    --card-h: 280px;
    --gap: 1.25rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ig-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    width: 100%;
    max-width: calc((var(--card-w) * 3) + (var(--gap) * 2) + 120px);
}

.ig-track-clip {
    flex: 1;
    overflow: hidden;
    /* Fuerza que el clip tenga exactamente el ancho de las cards visibles */
    max-width: calc((var(--card-w) * 3) + (var(--gap) * 2));
}

.ig-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.ig-profile-link {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.ig-loading,
.ig-empty {
    width: 100%;
    text-align: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: var(--nav-h);
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: none;
    display: block;
    padding: 6px 10px;
}

/* Tablet: 2 cards visibles */
@media (max-width: 900px) {
    .ig-feed {
        --card-w: 240px;
        --card-h: 240px;
    }

    .ig-track-clip {
        max-width: calc((var(--card-w) * 2) + var(--gap));
    }
}

/* Mobile: 1 card visible, ancho fluido respetando el padding del contenedor */
@media (max-width: 600px) {
    .ig-feed {
        --card-w: min(320px, calc(100vw - 7rem));
        --card-h: min(320px, calc(100vw - 7rem));
        --gap: 1rem;
    }

    .ig-track-clip {
        max-width: var(--card-w);
    }

    .ig-nav {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 640px) {
    .logo-img {
        height: 34px;
        padding: 4px 8px;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand,
.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 280px;
}

/*.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
}

*/

    .footer-links ul {
        padding-left: 0rem;
    }

/* ============================================================
   SERVICIOS PAGE
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.spage-hero {
    position: relative;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    padding: calc(var(--nav-h) + 5rem) 1.5rem 5rem;
    text-align: center;
    overflow: hidden;
}

    .spage-hero .section-eyebrow {
        color: var(--rose-light);
    }

    .spage-hero h1 {
        color: var(--white);
        margin-bottom: 1.25rem;
    }

        .spage-hero h1 em {
            font-style: italic;
        }

.spage-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .72);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.spage-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sp-petal {
    position: absolute;
    font-size: 2.75rem;
    color: var(--white);
    opacity: .16;
    animation: float 11s ease-in-out infinite;
}

    .sp-petal.p1 {
        top: 16%;
        left: 8%;
        animation-delay: 0s;
    }

    .sp-petal.p2 {
        top: 58%;
        right: 10%;
        animation-delay: 2.5s;
    }

    .sp-petal.p3 {
        bottom: 10%;
        left: 42%;
        animation-delay: 5s;
    }

/* ── SECCIONES ─────────────────────────────────────────────── */
.spage-section {
    padding: 6rem 1.5rem;
    background: var(--white);
}

    .spage-section.alt {
        background: var(--cream);
    }

/* ── GRID DE SERVICIOS ─────────────────────────────────────── */
.servicio-detalle-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    max-width: 1140px;
    margin: 0 auto;
}

    .servicio-detalle-grid .servicio-detalle-card {
        flex: 0 1 340px;
    }

    .servicio-detalle-grid.grid-3 .servicio-detalle-card.compact {
        flex: 0 1 320px;
    }

/* ── CARD ──────────────────────────────────────────────────── */
.servicio-detalle-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .servicio-detalle-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .servicio-detalle-card.featured {
        background: var(--plum);
        border-color: var(--plum);
        color: var(--white);
    }

        .servicio-detalle-card.featured h3,
        .servicio-detalle-card.featured .sd-incluye h4 {
            color: var(--white);
        }

        .servicio-detalle-card.featured .sd-desc,
        .servicio-detalle-card.featured .sd-modalidad {
            color: rgba(255, 255, 255, .78);
        }

        .servicio-detalle-card.featured .sd-incluye li {
            color: rgba(255, 255, 255, .8);
        }

            .servicio-detalle-card.featured .sd-incluye li::before {
                color: var(--rose-light);
            }

        .servicio-detalle-card.featured .sd-tags span {
            background: rgba(255, 255, 255, .12);
            color: var(--white);
            border-color: rgba(255, 255, 255, .2);
        }

        .servicio-detalle-card.featured .servicio-link {
            color: var(--rose-light);
        }

.sd-badge-top {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: var(--white);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 99px;
    white-space: nowrap;
}

/* ── HEADER DE CARD ────────────────────────────────────────── */
.sd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.sd-icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--rose);
}

.servicio-detalle-card.featured .sd-icon {
    color: var(--rose-light);
}

.sd-precio-badge {
    background: var(--rose-pale);
    color: var(--plum);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 1.15rem;
    padding: .4rem 1rem;
    border-radius: 99px;
    white-space: nowrap;
}

    .sd-precio-badge span {
        font-family: var(--ff-body);
        font-weight: 400;
        font-size: .72rem;
        color: var(--text-muted);
        margin-left: .25rem;
    }

    .sd-precio-badge.cotizacion {
        font-family: var(--ff-body);
        font-size: .82rem;
        font-weight: 500;
        letter-spacing: .02em;
    }

.servicio-detalle-card.featured .sd-precio-badge {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
}

    .servicio-detalle-card.featured .sd-precio-badge span {
        color: rgba(255, 255, 255, .65);
    }

/* ── TEXTO ─────────────────────────────────────────────────── */
.servicio-detalle-card h3 {
    font-size: 1.3rem;
    margin-bottom: .85rem;
}

.sd-desc {
    font-size: .95rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sd-modalidad {
    font-size: .85rem;
    font-weight: 500;
    color: var(--plum);
    margin: .5rem 0 1.25rem;
}

/* ── INCLUYE / LISTAS ──────────────────────────────────────── */
.sd-incluye {
    margin-bottom: 1.25rem;
}

    .sd-incluye h4 {
        font-family: var(--ff-body);
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--rose);
        margin-bottom: .75rem;
    }

    .sd-incluye ul {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .sd-incluye li {
        font-size: .875rem;
        color: var(--text-soft);
        padding-left: 1.25rem;
        position: relative;
    }

        .sd-incluye li::before {
            content: '·';
            position: absolute;
            left: 0;
            color: var(--rose);
            font-weight: 700;
        }

/* ── TAGS ──────────────────────────────────────────────────── */
.sd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

    .sd-tags span {
        background: var(--rose-pale);
        color: var(--plum);
        border: 1px solid var(--rose-light);
        border-radius: 99px;
        padding: .3rem .85rem;
        font-size: .8rem;
        font-weight: 400;
    }

    .sd-tags.small span {
        font-size: .76rem;
        padding: .28rem .75rem;
    }

/* ── LINK ──────────────────────────────────────────────────── */
.servicio-link {
    margin-top: auto;
    font-size: .875rem;
    font-weight: 500;
    color: var(--plum);
    transition: color .25s ease;
}

    .servicio-link:hover {
        color: var(--rose);
    }

.servicio-detalle-card .btn-primary {
    margin-top: auto;
    align-self: flex-start;
}

/* ── CTA FINAL ─────────────────────────────────────────────── */
.spage-cta {
    padding: 6rem 1.5rem;
    background: var(--rose-pale);
}

.spage-cta-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.scta-emoji {
    font-size: 2.5rem;
    color: var(--plum);
    display: block;
    margin-bottom: 1.5rem;
}

.spage-cta-inner h2 {
    margin-bottom: 1rem;
}

.spage-cta-inner p {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.scta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .servicio-detalle-grid .servicio-detalle-card,
    .servicio-detalle-grid.grid-3 .servicio-detalle-card.compact {
        flex: 1 1 100%;
        max-width: 480px;
    }
}

/* ============================================================
   CONTACTO PAGE
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.cpage-hero {
    position: relative;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    padding: calc(var(--nav-h) + 5rem) 1.5rem 5rem;
    text-align: center;
    overflow: hidden;
}

    .cpage-hero .section-eyebrow {
        color: var(--rose-light);
    }

    .cpage-hero h1 {
        color: var(--white);
        margin-bottom: 1.25rem;
    }

        .cpage-hero h1 em {
            font-style: italic;
        }

.cpage-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .72);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

.cpage-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cp-petal {
    position: absolute;
    font-size: 2.75rem;
    color: var(--white);
    opacity: .16;
    animation: float 11s ease-in-out infinite;
}

    .cp-petal.p1 {
        top: 18%;
        left: 7%;
        animation-delay: 0s;
    }

    .cp-petal.p2 {
        top: 55%;
        right: 9%;
        animation-delay: 2.5s;
    }

    .cp-petal.p3 {
        bottom: 12%;
        left: 40%;
        animation-delay: 5s;
    }

/* ── CANALES — LAYOUT GENERAL ──────────────────────────────── */
.cpage-canales {
    padding: 6rem 1.5rem;
    background: var(--white);
}

.cpage-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.cpage-canales-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── CARD DE CANAL GRANDE ──────────────────────────────────── */
.canal-card-grande {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 22px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .canal-card-grande:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--rose);
    }

.ccg-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rose-pale);
    color: var(--plum);
}

.canal-card-grande.whatsapp .ccg-icon {
    background: #DCF8E8;
    color: #1ba85a;
}

.canal-card-grande.instagram .ccg-icon {
    background: linear-gradient(135deg, #fce0e8, #f5d0dc);
    color: var(--plum);
}

.canal-card-grande.email .ccg-icon {
    background: var(--rose-pale);
    color: var(--plum);
}

.ccg-info {
    flex: 1;
    min-width: 0;
}

    .ccg-info strong {
        display: block;
        font-family: var(--ff-display);
        font-size: 1.2rem;
        color: var(--plum);
        margin-bottom: .15rem;
    }

    .ccg-info > span {
        display: block;
        font-size: .8rem;
        color: var(--rose);
        font-weight: 500;
        margin-bottom: .5rem;
    }

    .ccg-info p {
        font-size: .875rem;
        color: var(--text-soft);
        line-height: 1.55;
    }

.ccg-arrow {
    font-size: 1.4rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform .25s ease, color .25s ease;
}

.canal-card-grande:hover .ccg-arrow {
    transform: translateX(4px);
    color: var(--plum);
}

/* ── DECO VISUAL (blob) ────────────────────────────────────── */
.cpage-deco-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.cdeco-blob {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--plum-light) 100%);
    border-radius: var(--organic-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.cdeco-inner {
    text-align: center;
    padding: 2rem;
}

.cdeco-emoji {
    font-size: 2.5rem;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
}

.cdeco-inner p {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .95);
    line-height: 1.5;
}

.cdeco-card {
    position: absolute;
    bottom: -.5rem;
    left: -1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--white);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    z-index: 2;
}

.cdc-icon {
    font-size: 1.4rem;
    color: var(--plum);
}

.cdeco-card strong {
    display: block;
    font-size: .9rem;
    color: var(--plum);
}

.cdeco-card span {
    font-size: .76rem;
    color: var(--text-muted);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.cpage-faq {
    padding: 6rem 1.5rem;
    background: var(--rose-pale);
}

.cfaq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

.cfaq-card {
    flex: 0 1 480px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .cfaq-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    .cfaq-card h3 {
        font-size: 1.1rem;
        margin-bottom: .6rem;
    }

    .cfaq-card p {
        font-size: .9rem;
        color: var(--text-soft);
        line-height: 1.65;
    }

/* ── CTA FINAL ─────────────────────────────────────────────── */
.cpage-cta {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    text-align: center;
}

.cpage-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.ccta-emoji {
    font-size: 2.5rem;
    color: var(--rose-light);
    display: block;
    margin-bottom: 1.5rem;
}

.cpage-cta-inner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cpage-cta-inner p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .cpage-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cpage-deco-visual {
        order: -1;
    }

    .cdeco-card {
        left: 0;
    }
}

@media (max-width: 600px) {
    .canal-card-grande {
        flex-direction: column;
        text-align: center;
    }

    .ccg-arrow {
        display: none;
    }

    .cdeco-blob {
        width: 260px;
        height: 260px;
    }

    .cdeco-card {
        position: static;
        margin-top: 1.5rem;
    }
}

.canal-card.tiktok svg {
    color: #010101;
}

.canal-card.tiktok:hover {
    border-color: #010101;
}

/* ============================================================
   CONTACTO PAGE — Responsive corregido
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.cpage-hero {
    position: relative;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    padding: calc(var(--nav-h) + 5rem) 1.5rem 5rem;
    text-align: center;
    overflow: hidden;
}

    .cpage-hero .section-eyebrow {
        color: var(--rose-light);
    }

    .cpage-hero h1 {
        color: var(--white);
        margin-bottom: 1.25rem;
    }

        .cpage-hero h1 em {
            font-style: italic;
        }

.cpage-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

.cpage-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cp-petal {
    position: absolute;
    font-size: 2.75rem;
    color: var(--white);
    opacity: .16;
    animation: float 11s ease-in-out infinite;
}

    .cp-petal.p1 {
        top: 18%;
        left: 7%;
        animation-delay: 0s;
    }

    .cp-petal.p2 {
        top: 55%;
        right: 9%;
        animation-delay: 2.5s;
    }

    .cp-petal.p3 {
        bottom: 12%;
        left: 40%;
        animation-delay: 5s;
    }

/* ── SECCIÓN CANALES ───────────────────────────────────────── */
.cpage-canales {
    padding: 5rem 1.5rem;
    background: var(--white);
}

/* Layout de dos columnas en desktop */
.cpage-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Lista de canales: columna izquierda */
.cpage-canales-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0; /* evita que desborde el grid */
}

/* ── CARD GRANDE ───────────────────────────────────────────── */
.canal-card-grande {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    text-decoration: none;
    min-width: 0; /* crítico: evita overflow en flex */
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .canal-card-grande:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--rose);
    }

/* Icono */
.ccg-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rose-pale);
    color: var(--plum);
}

.canal-card-grande.whatsapp .ccg-icon {
    background: #DCF8E8;
    color: #1ba85a;
}

.canal-card-grande.instagram .ccg-icon {
    background: #fce0e8;
    color: var(--plum);
}

.canal-card-grande.tiktok .ccg-icon {
    background: #f0f0f0;
    color: #010101;
}

.canal-card-grande.email .ccg-icon {
    background: var(--rose-pale);
    color: var(--plum);
}

/* Info: título, handle, descripción */
.ccg-info {
    flex: 1;
    min-width: 0; /* crítico: permite que el texto haga wrap */
}

    .ccg-info strong {
        display: block;
        font-family: var(--ff-display);
        font-size: 1.15rem;
        color: var(--plum);
        margin-bottom: .1rem;
    }

    .ccg-info > span {
        display: block;
        font-size: .78rem;
        color: var(--rose);
        font-weight: 500;
        margin-bottom: .4rem;
        word-break: break-all; /* emails largos no desbordan */
    }

    .ccg-info p {
        font-size: .85rem;
        color: var(--text-soft);
        line-height: 1.5;
        margin: 0;
    }

/* Flecha */
.ccg-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform .25s ease, color .25s ease;
}

.canal-card-grande:hover .ccg-arrow {
    transform: translateX(4px);
    color: var(--plum);
}

/* ── DECO VISUAL (columna derecha) ─────────────────────────── */
.cpage-deco-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cdeco-blob {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--plum-light) 100%);
    border-radius: var(--organic-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.cdeco-inner {
    text-align: center;
    padding: 1.75rem;
}

.cdeco-emoji {
    font-size: 2.4rem;
    color: var(--white);
    display: block;
    margin-bottom: .85rem;
}

.cdeco-inner p {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,.95);
    line-height: 1.5;
}

.cdeco-card {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--white);
    border-radius: 16px;
    padding: .85rem 1.1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    z-index: 2;
}

.cdc-icon {
    font-size: 1.25rem;
    color: var(--plum);
}

.cdeco-card strong {
    display: block;
    font-size: .85rem;
    color: var(--plum);
}

.cdeco-card span {
    font-size: .74rem;
    color: var(--text-muted);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.cpage-faq {
    padding: 5rem 1.5rem;
    background: var(--rose-pale);
}

.cfaq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cfaq-card {
    flex: 0 1 480px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .cfaq-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    .cfaq-card h3 {
        font-size: 1.05rem;
        margin-bottom: .55rem;
    }

    .cfaq-card p {
        font-size: .875rem;
        color: var(--text-soft);
        line-height: 1.65;
    }

/* ── CTA FINAL ─────────────────────────────────────────────── */
.cpage-cta {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    text-align: center;
}

.cpage-cta-inner {
    max-width: 540px;
    margin: 0 auto;
}

.ccta-emoji {
    font-size: 2.25rem;
    color: var(--rose-light);
    display: block;
    margin-bottom: 1.25rem;
}

.cpage-cta-inner h2 {
    color: var(--white);
    margin-bottom: .85rem;
}

.cpage-cta-inner p {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet: ocultar el blob, lista ocupa todo el ancho */
@media (max-width: 900px) {
    .cpage-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cpage-deco-visual {
        display: none;
    }
}

/* Mobile: cards más compactas, ocultar descripción y flecha */
@media (max-width: 560px) {
    .canal-card-grande {
        padding: 1rem 1.1rem;
        gap: .85rem;
    }

    .ccg-icon {
        width: 44px;
        height: 44px;
    }

    .ccg-info p,
    .ccg-arrow {
        display: none;
    }

    .ccg-info strong {
        font-size: 1rem;
    }

    .ccg-info > span {
        font-size: .76rem;
    }

    .cfaq-card {
        flex: 1 1 100%;
    }
}