/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg:          #cdcfc0;
    --bg-alt:      #b8baa9;
    --bg-dark:     #2a2a24;
    --text:        #1a1a16;
    --text-muted:  #3f3f37;
    --text-light:  #8a8a7e;
    --white:       #f2f0eb;
    --font:        'DM Sans', sans-serif;
    --nav-h:       88px;
}

html {
    scroll-behavior: smooth;
    font-size: 17.5px;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ─── STICKY CTA ───────────────────────────────────── */
#sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    background: var(--bg);
    box-shadow: 0 1px 0 rgba(0,0,0,0.10);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#sticky-cta.visible {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
}

.sticky-cta-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}

.sticky-cta-btn {
    display: inline-block;
    padding: 10px 28px;
    background: var(--text);
    color: var(--bg);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: opacity 0.2s;
}

.sticky-cta-btn:hover {
    opacity: 0.75;
}

@media (max-width: 640px) {
    .sticky-cta-inner { padding: 0 24px; height: 60px; }
    .sticky-cta-name  { font-size: 13px; }
    .sticky-cta-btn   { padding: 8px 20px; }
}

/* ─── NAVBAR ───────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-transition: background 0.35s ease, box-shadow 0.35s ease, -webkit-transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.hidden {
    transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
}

#navbar.scrolled {
    background: var(--bg);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: var(--nav-h);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--text);
    transition: opacity 0.2s;
}

.nav-logo:hover {
    opacity: 0.6;
}

.nav-logo-name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
}

.nav-logo-sub {
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    align-self: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    position: relative;
    transition: opacity 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.25s ease;
}

.nav-links a:hover { opacity: 0.6; }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}
.nav-hamburger.open span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 24px 48px 32px;
    background: var(--bg);
    gap: 8px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.nav-mobile.open {
    display: flex;
}

.mobile-link {
    font-size: 22px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: opacity 0.2s;
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { opacity: 0.5; }

/* ─── LAYOUT HELPERS ───────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.split {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    align-items: start;
}

.split-label {
    padding-top: 6px;
}

.split-label span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-header {
    margin-bottom: 56px;
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #3a3a34;
    margin-bottom: 16px;
}

/* ─── REVEAL ANIMATION ─────────────────────────────── */
/* .reveal: visible siempre, sin animación */
.reveal {
    opacity: 1;
    transform: none;
}

/* .reveal-sm: animación liviana solo en sección sobre-mí */
.reveal-sm {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: transform, opacity;
}

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

.reveal-sm:nth-child(1) { transition-delay: 0.05s; }
.reveal-sm:nth-child(2) { transition-delay: 0.15s; }
.reveal-sm:nth-child(3) { transition-delay: 0.25s; }
.reveal-sm:nth-child(4) { transition-delay: 0.35s; }
.reveal-sm:nth-child(5) { transition-delay: 0.45s; }

/* ─── HERO ─────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: calc(var(--nav-h) + 48px) 48px 60px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    width: 100%;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 36px;
    transition-delay: 0.05s;
}

.hero-heading {
    font-size: clamp(38px, 5.4vw, 80px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 40px;
}

.hero-heading em {
    font-style: italic;
    font-weight: 300;
}

/* ─── LINE REVEAL (hero heading) ───────────────────── */
.line-wrap {
    display: block;
}

.line-inner {
    display: block;
    opacity: 0;
    transform: translateY(16px);
    animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.line-wrap:nth-child(1) .line-inner { animation-delay: 0.6s; }
.line-wrap:nth-child(2) .line-inner { animation-delay: 1.0s; }
.line-wrap:nth-child(3) .line-inner { animation-delay: 1.4s; }
.line-wrap:nth-child(4) .line-inner { animation-delay: 1.8s; }

@keyframes lineReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-spacer {
    height: clamp(12px, 1.75vw, 26px);
}

.hero-sub {
    font-size: 20.7px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 52px;
    transition-delay: 0.25s;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--text);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--text);
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: pointer;
    transition-delay: 0.35s;
}

.btn:hover {
    background: var(--text);
    color: var(--bg);
}

.hero-disclaimer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.hero-deco {
    position: absolute;
    top: var(--nav-h);
    right: 48px;
    bottom: 0;
    display: flex;
    align-items: stretch;
}

.hero-line {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(26,26,22,0.15) 30%, rgba(26,26,22,0.15) 70%, transparent);
}

.hero-doodle-wrap {
    position: absolute;
    right: clamp(80px, 9vw, 140px);
    top: 42%;
    transform: translateY(-50%);
    width: clamp(242px, 28.6vw, 440px);
    height: clamp(242px, 28.6vw, 440px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: doodleFade 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    pointer-events: none;
}

.hero-photo-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%;
    height: 86%;
    border-radius: 50%;
    overflow: hidden;
}

.hero-doodle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    object-fit: cover;
}

.hero-circle-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--text);
    opacity: 0.7;
    animation: spinCW 50s linear infinite;
    transform-origin: 50% 50%;
    will-change: transform;
}

@keyframes spinCW {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes doodleFade {
    from { opacity: 0; transform: translateY(calc(-50% + 20px)); }
    to   { opacity: 1; transform: translateY(-50%); }
}

/* ─── PARA QUIÉN ES ─────────────────────────────────── */
#para-quien {
    padding: 120px 0;
    border-top: 1px solid rgba(0,0,0,0.10);
}

#para-quien h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.quien-intro {
    font-size: 17.6px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 680px;
}

.quien-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quien-card {
    background: #e8e4d8;
    border: 2px solid var(--text);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quien-card-emoji {
    font-size: 1.7rem;
    line-height: 1;
    display: block;
}

.quien-card-emoji img.emoji {
    height: 1.7rem;
    width: 1.7rem;
    vertical-align: middle;
    display: inline-block;
}

.quien-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.quien-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── SOBRE MÍ ─────────────────────────────────────── */
#sobre-mi {
    padding: 120px 0;
    border-top: 1px solid rgba(0,0,0,0.10);
}

#sobre-mi h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    line-height: 1.15;
}

#sobre-mi p {
    font-size: 17.6px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

#sobre-mi p:last-child { margin-bottom: 0; }

.sobre-mi-eyebrow {
    font-size: 11.7px !important;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 28px !important;
}

.sobre-mi-cta {
    margin-top: 36px;
}


#sobre-mi .split {
    grid-template-columns: 420px 1fr;
}

#sobre-mi .split-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sobre-mi-foto {
    margin-top: 24px;
    width: 100%;
    height: auto;
}

.sobre-mi-foto--mobile {
    display: none;
}

/* ─── ENFOQUE ──────────────────────────────────────── */
#enfoque {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.enfoque-doodle {
    position: absolute;
    top: 60px;
    right: clamp(40px, 6vw, 100px);
    transform: none;
    width: clamp(242px, 28.6vw, 440px);
    height: auto;
    mix-blend-mode: screen;
    opacity: 0.85;
    pointer-events: none;
}

#enfoque .section-label {
    color: rgba(242,240,235,0.4);
}

#enfoque h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--white);
}

.enfoque-intro {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(242,240,235,0.65);
    margin-bottom: 72px;
}

.preguntas {
    margin-top: 64px;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.pregunta {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.pregunta.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.pregunta em {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(26px, 3.5vw, 48px);
    letter-spacing: -0.025em;
    color: var(--white);
    line-height: 1.2;
    display: block;
}

.enfoque-cta {
    margin-top: 48px;
}

.enfoque-cta .btn {
    border-color: var(--white);
    color: var(--white);
    font-weight: 700;
}

.enfoque-cta .btn:hover {
    background: var(--white);
    color: var(--bg-dark);
}

.preguntas-dots {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    justify-content: flex-start;
}

.preguntas-dot {
    width: 20px;
    height: 1px;
    background: rgba(242,240,235,0.25);
    transition: background 0.4s ease, width 0.4s ease;
    cursor: pointer;
}

.preguntas-dot.active {
    background: rgba(242,240,235,0.85);
    width: 36px;
}

/* ─── SESIONES ─────────────────────────────────────── */
#sesiones {
    padding: 120px 0;
    border-top: 1px solid rgba(0,0,0,0.10);
}

.service-item {
    padding: 48px 0;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}

.service-item:first-child {
    padding-top: 0;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.015em;
    white-space: nowrap;
}

.service-line {
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.12);
}

.service-item p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 20px;
}

.sesiones-quote {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
    padding: 36px 0;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ─── CÓMO FUNCIONA ────────────────────────────────── */
#como-funciona {
    padding: 120px 0;
    background: var(--bg-alt);
}

#como-funciona .section-label {
    color: var(--text-muted);
}

#como-funciona h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.step {
    padding: 40px 32px;
    background: rgba(0,0,0,0.04);
    transition-delay: calc(var(--si, 0) * 0.1s);
}

.step:nth-child(1) { --si: 0; }
.step:nth-child(2) { --si: 1; }
.step:nth-child(3) { --si: 2; }
.step:nth-child(4) { --si: 3; }

.step-num {
    display: block;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
    opacity: 0.5;
}

.step h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ─── CONTACTO ─────────────────────────────────────── */
#contacto {
    padding: 120px 0;
    border-top: 1px solid rgba(0,0,0,0.10);
    position: relative;
    overflow: hidden;
}

.contacto-doodle {
    position: absolute;
    right: clamp(40px, 6vw, 100px);
    top: 45%;
    transform: translateY(-50%);
    width: clamp(200px, 24vw, 380px);
    height: auto;
    opacity: 0.7;
    pointer-events: none;
}

#contacto h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 480px;
    margin: 20px 0 48px;
}

.contact-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text);
    background: transparent;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.contact-btn:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.contact-btn svg {
    flex-shrink: 0;
}

/* ─── PUBLICACIONES ────────────────────────────────── */
#publicaciones {
    padding: 120px 0;
    border-top: 1px solid rgba(0,0,0,0.10);
}

#publicaciones h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

/* Thumbnails de color */
.blog-thumb {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    padding: 20px 28px;
    transition: filter 0.4s ease;
}

.blog-featured .blog-thumb {
    height: 280px;
}

.blog-thumb--dark  { background: var(--bg-dark); }
.blog-thumb--mid   { background: var(--bg-alt); }
.blog-thumb--warm  { background: #a8a99a; }

.blog-thumb-bg {
    position: absolute;
    bottom: -12px;
    right: -8px;
    font-size: clamp(72px, 12vw, 140px);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.blog-thumb--dark  .blog-thumb-bg { color: rgba(242,240,235,0.07); }
.blog-thumb--mid   .blog-thumb-bg { color: rgba(26,26,22,0.08); }
.blog-thumb--warm  .blog-thumb-bg { color: rgba(26,26,22,0.08); }

.blog-featured:hover .blog-thumb,
.blog-card:hover .blog-thumb {
    filter: brightness(0.92);
}

/* Artículo destacado */
.blog-featured {
    padding: 56px 0;
    border-top: 1px solid rgba(0,0,0,0.10);
    border-bottom: 1px solid rgba(0,0,0,0.10);
    margin-bottom: 2px;
}

.blog-featured-meta,
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.blog-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 4px 10px;
}

.blog-date {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.blog-featured-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 780px;
}

.blog-featured-title a,
.blog-card-title a {
    color: var(--text);
    transition: opacity 0.2s;
}

.blog-featured-title a:hover,
.blog-card-title a:hover {
    opacity: 0.5;
}

.blog-featured-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 28px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text);
    transition: gap 0.25s ease;
}

.blog-read-more:hover {
    gap: 14px;
}

.blog-arrow {
    transition: transform 0.25s ease;
}

.blog-read-more:hover .blog-arrow {
    transform: translateX(4px);
}

/* Grid de cards menores */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 2px;
}

.blog-card {
    padding: 40px 0 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    transition: background 0.2s;
}

.blog-grid .blog-card:nth-child(odd) {
    padding-right: 48px;
    border-right: 1px solid rgba(0,0,0,0.10);
}

.blog-grid .blog-card:nth-child(even) {
    padding-left: 48px;
}

.blog-card-title {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ─── FAQ ──────────────────────────────────────────── */
#faq {
    padding: 120px 0;
    background: #aeB09f;
    color: var(--text);
}

#faq .section-label {
    color: rgba(26,26,22,0.45);
}

#faq h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--text);
}

.faq-list {
    margin-top: 56px;
    border-top: 1px solid rgba(0,0,0,0.12);
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 0;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: opacity 0.2s;
}

.faq-question:hover {
    opacity: 0.55;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.faq-icon::before {
    width: 22px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 1px;
    height: 22px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Acordeón: max-height para animación confiable */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer-inner {
    padding-bottom: 32px;
}

.faq-answer-inner p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(26,26,22,0.6);
    max-width: 680px;
}

.faq-answer-inner p strong {
    color: var(--text);
    font-weight: 500;
}

/* ─── WHATSAPP FLOTANTE ─────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 200;
    width: 52px;
    height: 52px;
    background: var(--bg-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.whatsapp-float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(6px);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 24px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float-tooltip {
        display: none;
    }
}

/* ─── FOOTER ───────────────────────────────────────── */
footer {
    border-top: 1px solid rgba(0,0,0,0.10);
    padding: 0 48px;
}

.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 52px 0 40px;
    gap: 32px;
}

.footer-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 6px;
}

.footer-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-ig {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.01em;
    transition: opacity 0.2s;
    margin-bottom: 2px;
}

.footer-ig:hover {
    opacity: 0.5;
}

.footer-privacy {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-privacy p {
    font-size: 10.5px;
    line-height: 1.75;
    color: rgba(26,26,22,0.85);
    letter-spacing: 0.01em;
}

.footer-privacy strong {
    font-weight: 500;
    color: rgba(26,26,22,0.45);
}

.footer-ley-link {
    color: #2563a8;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    opacity: 1;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.footer-credit-text {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.footer-credit-link {
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--text-light);
    padding-bottom: 1px;
    transition: opacity 0.2s ease;
}

.footer-credit-link:hover {
    opacity: 0.6;
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Reducir padding de secciones en tablet */
    #para-quien { padding: 80px 0; }
    #sobre-mi, #sesiones, #como-funciona,
    #contacto, #publicaciones { padding: 80px 0; }
    #enfoque { padding: 80px 0; }

    .quien-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .split {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .split-label {
        padding-top: 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid .blog-card:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .blog-grid .blog-card:nth-child(even) {
        padding-left: 0;
    }

    #sobre-mi .split {
        display: flex;
        flex-direction: column;
    }

    #sobre-mi .split-label {
        order: 2;
    }

    #sobre-mi .split-content {
        order: 1;
    }

    #sobre-mi .split-label span {
        display: none;
    }

    .sobre-mi-foto {
        display: none;
    }

    .sobre-mi-foto--mobile {
        display: block;
        margin: 20px 0 24px;
        max-width: 100%;
        border-radius: 4px;
    }

    /* Doodles: ocultar en tablet para no pisar el contenido */
    .enfoque-doodle,
    .contacto-doodle { display: none; }

    /* Hero doodle: reducir en tablet */
    .hero-doodle-wrap {
        width: clamp(140px, 18vw, 200px);
        height: clamp(140px, 18vw, 200px);
        right: 24px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 40px 0 32px;
    }

    .footer-info {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .nav-inner { padding: 0 24px; }
    .nav-mobile { padding: 20px 24px 28px; }
    .container { padding: 0 24px; }

    /* Subtítulo de navbar: tamaño más chico en mobile */
    .nav-logo-name { font-size: 14px; }
    .nav-logo-sub  { font-size: 10px; letter-spacing: 0.04em; }

    /* Reducir padding en mobile */
    #para-quien { padding: 64px 0; }
    #sobre-mi, #sesiones, #como-funciona,
    #contacto, #publicaciones { padding: 64px 0; }
    #enfoque { padding: 72px 0; }

    .quien-cards {
        grid-template-columns: 1fr;
    }

    #hero {
        padding-top: calc(var(--nav-h) + 4px);
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-eyebrow { margin-bottom: 12px; }

    .hero-heading {
        margin-bottom: 12px;
    }

    .hero-spacer { height: 0; }

    .hero-sub {
        font-size: 15.5px;
        margin-bottom: 24px;
    }

    .hero-deco { display: none; }

    /* ── Hero foto mobile ── */
    .hero-circle-text {
        display: none !important;
    }

    .hero-doodle-wrap {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 240px;
        height: 240px;
        margin: 20px auto 24px;
        animation: none !important;
    }

    .hero-photo-circle {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-doodle {
        width: 100% !important;
        height: 100% !important;
        transform: translate(-50%, -50%) !important;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 32px 24px;
    }

    /* Blog thumbs más chicos en mobile */
    .blog-thumb { height: 160px; }
    .blog-featured .blog-thumb { height: 200px; }

    footer { padding: 0 24px; }

    .contact-links {
        flex-direction: column;
    }

    .contact-btn {
        justify-content: center;
    }
}

/* ─── ALTURA CORTA: laptops 768px y tablets landscape ── */
@media (max-height: 820px) {
    #hero {
        padding-top: calc(var(--nav-h) + 20px);
        padding-bottom: 28px;
    }

    .hero-heading {
        font-size: clamp(44px, 7.5vw, 100px);
        margin-bottom: 28px;
    }

    .hero-eyebrow { margin-bottom: 20px; }
    .hero-sub {
        font-size: 18.4px;
        margin-bottom: 36px;
    }
}

@media (max-height: 680px) {
    #hero { padding-top: calc(var(--nav-h) + 12px); }

    .hero-heading {
        font-size: clamp(36px, 6vw, 72px);
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 16.1px;
        margin-bottom: 24px;
    }
}
