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

    :root {
      --beige:    #f4ede4;
      --crudo:    #ede0d0;
      --terracota:#b4503c;
      --terra-light: #c56450;
      --terra-dark:  #893024;
      --marron:   #5c3d2e;
      --blanco:   #faf7f3;
      --texto:    #3a2a1e;
      --gris:     #9a8a7e;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--blanco);
      color: var(--texto);
      overflow-x: hidden;
    }

    /* ── NAV ─────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 4rem;
      background: rgba(250,247,243,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(181,97,74,0.12);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 400;
      color: var(--texto);
      letter-spacing: 0.04em;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .nav-logo span { color: var(--terracota); }
    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a {
      font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--texto); text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--terracota); }
    .nav-cta {
      background: var(--terracota); color: white;
      padding: 0.6rem 1.5rem; font-size: 0.78rem;
      font-family: 'Jost', sans-serif; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      border: none; cursor: pointer; transition: background 0.3s;
      text-decoration: none;
    }
    .nav-cta:hover { background: var(--terra-dark); }

    /* ── HERO ────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
    }
    .hero-left {
      background: var(--beige);
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 6rem 5rem 6rem 6rem;
      position: relative;
      overflow: hidden;
    }
    .hero-left::before {
      content: '';
      position: absolute; top: -60px; left: -60px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181,97,74,0.08) 0%, transparent 70%);
    }
    .hero-eyebrow {
      font-size: 0.72rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--terracota);
      margin-bottom: 1.2rem; font-weight: 400;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      font-weight: 300; line-height: 1.12;
      color: var(--texto); margin-bottom: 1.8rem;
    }
    .hero-title em { font-style: italic; color: var(--terracota); }
    .hero-text {
      font-size: 1rem; font-weight: 300; line-height: 1.75;
      color: var(--marron); max-width: 400px; margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; gap: 1rem; align-items: center; }
    .btn-primary {
      background: var(--terracota); color: white;
      padding: 0.85rem 2.2rem; font-size: 0.82rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      border: none; cursor: pointer;
      font-family: 'Jost', sans-serif; font-weight: 400;
      transition: background 0.3s; text-decoration: none; display: inline-block;
    }
    .btn-primary:hover { background: var(--terra-dark); }
    .btn-ghost {
      color: var(--terracota); font-size: 0.82rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none; font-weight: 400;
      display: flex; align-items: center; gap: 0.5rem;
      transition: gap 0.3s;
    }
    .btn-ghost:hover { gap: 0.8rem; }

    .hero-right {
      background: var(--crudo);
      position: relative; overflow: hidden;
    }
    /* Video placeholder */
    .video-block {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      position: relative;
      background: linear-gradient(135deg, #ddd0be 0%, #c8b49a 100%);
    }
    .video-overlay-text {
      position: absolute; bottom: 2.5rem; left: 2.5rem; right: 2.5rem;
      color: white;
    }
    .video-play {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(255,255,255,0.2);
      border: 2px solid rgba(255,255,255,0.6);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.3s;
      backdrop-filter: blur(4px);
    }
    .video-play:hover { background: rgba(255,255,255,0.35); transform: scale(1.05); }
    .video-play svg { margin-left: 5px; }
    .video-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 300; font-style: italic;
      margin-top: 1.2rem; text-align: center;
    }
    .video-sub { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; margin-top: 0.3rem; }

    /* Decorative thread */
    .thread {
      position: absolute; top: 0; right: 0;
      width: 3px; height: 100%;
      background: linear-gradient(to bottom, transparent, var(--terracota) 30%, var(--terracota) 70%, transparent);
      opacity: 0.3;
    }

    /* ── TRUST BAR ───────────────────────────── */
    .trust-bar {
      background: var(--terracota);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: stretch;
    }
    .trust-items {
      display: flex; gap: 3rem; align-items: center;
      flex-wrap: wrap; padding: 1.4rem 4rem;
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.7rem;
      color: white;
    }
    .trust-item svg { opacity: 0.85; flex-shrink: 0; }
    .trust-item span { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 300; }

    /* Primera llamada */
    .trust-contact {
      background: rgba(0,0,0,0.13);
      display: flex; align-items: center; gap: 1.4rem;
      padding: 1.2rem 2.8rem 1.2rem 2.2rem;
      border-left: 1px solid rgba(255,255,255,0.15);
      min-width: 340px;
    }
    .trust-contact-avatar {
      width: 58px; height: 58px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
      border: 1.5px solid rgba(255,255,255,0.35);
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    }
    .trust-contact-avatar svg { opacity: 0.65; }
    .trust-contact-info { display: flex; flex-direction: column; }
    .trust-contact-label {
      font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.6); font-weight: 400; margin-bottom: 0.2rem;
    }
    .trust-contact-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; color: white; font-weight: 400; line-height: 1.1;
    }
    .trust-contact-rol {
      font-size: 0.73rem; color: rgba(255,255,255,0.7); font-weight: 300;
      margin-bottom: 0.3rem;
    }
    .trust-contact-desc {
      font-size: 0.72rem; color: rgba(255,255,255,0.55); font-weight: 300;
      line-height: 1.5; max-width: 220px; font-style: italic; margin-bottom: 0.5rem;
    }
    .trust-contact-tel {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.8rem; color: white; font-weight: 400;
      text-decoration: none;
      background: rgba(255,255,255,0.15); padding: 0.3rem 0.8rem;
      border: 1px solid rgba(255,255,255,0.2);
      transition: background 0.2s; align-self: flex-start;
    }
    .trust-contact-tel:hover { background: rgba(255,255,255,0.25); }

    /* ── INTRO ───────────────────────────────── */
    .intro {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; min-height: 560px;
    }
    .intro-img {
      background: var(--crudo);
      position: relative; overflow: hidden;
      min-height: 460px;
    }
    .intro-img-inner {
      width: 100%; height: 100%;
      background: linear-gradient(160deg, #d6c4ae 0%, #b8a089 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .img-placeholder {
      width: 160px; height: 160px; border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.4);
    }
    .img-placeholder svg { opacity: 0.5; }
    .intro-caption {
      position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem; font-style: italic;
      color: rgba(255,255,255,0.8); text-align: center;
    }

    .intro-text {
      background: var(--beige);
      padding: 5rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .section-label {
      font-size: 0.7rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--terracota);
      margin-bottom: 1.4rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 300; line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: var(--terracota); }
    .section-body {
      font-size: 0.97rem; font-weight: 300; line-height: 1.8;
      color: var(--marron); margin-bottom: 2rem;
    }
    .section-body strong {
      font-weight: 500; color: var(--terracota);
    }
    .divider-terra {
      width: 40px; height: 2px;
      background: var(--terracota); margin-bottom: 1.8rem;
    }

    /* ── EQUIPO ──────────────────────────────── */
    .equipo {
      padding: 6rem 6rem;
      background: var(--blanco);
    }
    .equipo-header { text-align: center; margin-bottom: 3.5rem; }
    .equipo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .psicologa-card {
      background: var(--beige);
      padding: 0;
      overflow: hidden;
      transition: transform 0.3s;
    }
    .psicologa-card:hover { transform: translateY(-4px); }
    .card-foto {
      height: 260px;
      background: linear-gradient(135deg, #d6c4ae, #c0a98c);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .card-foto-icon {
      width: 90px; height: 90px; border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.4);
    }
    .card-foto-icon svg { opacity: 0.5; }
    .card-info { padding: 1.5rem 1.4rem; }
    .card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 400; margin-bottom: 0.25rem;
    }
    .card-role {
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--terracota); margin-bottom: 0.7rem;
    }
    .card-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.6; color: var(--gris); }

    /* ── SERVICIOS ───────────────────────────── */
    .servicios {
      background: var(--crudo);
      padding: 6rem;
    }
    .servicios-header { margin-bottom: 3.5rem; }
    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(181,97,74,0.15);
    }
    .servicio-item {
      background: var(--crudo);
      padding: 2.5rem 2rem;
      transition: background 0.3s;
      cursor: pointer;
    }
    .servicio-item:hover { background: var(--beige); }
    .servicio-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.9rem; color: var(--terracota);
      margin-bottom: 1rem; font-weight: 300;
    }
    .servicio-nombre {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 400;
      margin-bottom: 0.8rem; line-height: 1.2;
    }
    .servicio-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--marron); }
    .servicio-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      margin-top: 1.2rem; font-size: 0.75rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--terracota);
      text-decoration: none; transition: gap 0.3s;
    }
    .servicio-link:hover { gap: 0.7rem; }

    /* ── COMO FUNCIONA ───────────────────────── */
    .proceso {
      background: var(--beige);
      padding: 6rem;
    }
    .proceso-header { text-align: center; margin-bottom: 4rem; }
    .proceso-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }
    .proceso-steps::before {
      content: '';
      position: absolute; top: 28px; left: 12%; right: 12%;
      height: 1px; background: var(--terracota); opacity: 0.3;
    }
    .paso {
      text-align: center; padding: 0 1.5rem;
    }
    .paso-num {
      width: 56px; height: 56px; border-radius: 50%;
      border: 1.5px solid var(--terracota);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; color: var(--terracota);
      background: var(--beige); position: relative; z-index: 1;
    }
    .paso-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 400; margin-bottom: 0.6rem;
    }
    .paso-text { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: var(--marron); }

    /* ── TESTIMONIOS ─────────────────────────── */
    .testimonios {
      background: var(--blanco);
      padding: 6rem;
    }
    .testimonios-header { text-align: center; margin-bottom: 3.5rem; }
    .testimonios-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testimonio {
      background: var(--beige);
      padding: 2.5rem;
      position: relative;
    }
    .testimonio::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem; font-weight: 300;
      color: var(--terracota); opacity: 0.2;
      position: absolute; top: 0.5rem; left: 1.5rem;
      line-height: 1;
    }
    .testimonio-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-style: italic; font-weight: 300;
      line-height: 1.7; color: var(--texto); margin-bottom: 1.5rem;
      position: relative; z-index: 1;
    }
    .testimonio-autor {
      font-size: 0.75rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gris);
    }

    /* ── CTA ─────────────────────────────────── */
    .cta-section {
      background: var(--terracota);
      padding: 6rem;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .cta-text .section-title { color: white; }
    .cta-text .section-title em { color: rgba(255,255,255,0.6); font-style: italic; }
    .cta-text p { color: rgba(255,255,255,0.8); font-weight: 300; line-height: 1.8; font-size: 1rem; }
    .cta-form {
      display: flex; flex-direction: column; gap: 1rem;
    }
    .cta-form input, .cta-form select, .cta-form textarea {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      padding: 0.9rem 1.2rem;
      color: white; font-family: 'Jost', sans-serif;
      font-size: 0.9rem; font-weight: 300;
      outline: none; transition: background 0.3s;
    }
    .cta-form input::placeholder,
    .cta-form select,
    .cta-form textarea::placeholder { color: rgba(255,255,255,0.6); }
    .cta-form input:focus,
    .cta-form textarea:focus { background: rgba(255,255,255,0.22); }
    .cta-form select { color: rgba(255,255,255,0.85); }
    .cta-form select option { color: var(--texto); background: var(--beige); }
    .btn-white {
      background: white; color: var(--terracota);
      padding: 1rem 2rem; font-size: 0.82rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: none; cursor: pointer;
      font-family: 'Jost', sans-serif; font-weight: 500;
      transition: all 0.3s; align-self: flex-start;
    }
    .btn-white:hover { background: var(--beige); }
    .cta-whatsapp {
      display: flex; align-items: center; gap: 0.6rem;
      color: rgba(255,255,255,0.7); font-size: 0.82rem;
      text-decoration: none; margin-top: 0.5rem;
      font-weight: 300; transition: color 0.3s;
    }
    .cta-whatsapp:hover { color: white; }

    /* ── FOOTER ──────────────────────────────── */
    footer {
      background: var(--texto);
      padding: 3.5rem 6rem;
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem; align-items: start;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; color: var(--crudo);
      margin-bottom: 1rem;
    }
    .footer-logo span { color: var(--terra-light); }
    .footer-tagline { font-size: 0.85rem; font-weight: 300; color: rgba(237,224,208,0.6); line-height: 1.7; }
    .footer-col h4 {
      font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--terra-light); margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul li a {
      font-size: 0.85rem; font-weight: 300;
      color: rgba(237,224,208,0.7); text-decoration: none;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: var(--crudo); }
    .footer-bottom {
      background: rgba(0,0,0,0.2);
      padding: 1rem 6rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p { font-size: 0.75rem; color: rgba(237,224,208,0.4); }

    /* ── ANIMATIONS ──────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow  { animation: fadeUp 0.7s ease 0.1s both; }
    .hero-title    { animation: fadeUp 0.7s ease 0.25s both; }
    .hero-text     { animation: fadeUp 0.7s ease 0.4s both; }
    .hero-btns     { animation: fadeUp 0.7s ease 0.55s both; }
    .video-block   { animation: fadeUp 0.9s ease 0.3s both; }

    /* ── RESPONSIVE (básico) ─────────────────── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 5rem 2rem 3rem; }
      .hero-right { min-height: 320px; }
      .intro, .cta-section { grid-template-columns: 1fr; }
      .equipo-grid { grid-template-columns: 1fr 1fr; }
      .servicios-grid, .testimonios-grid { grid-template-columns: 1fr; }
      .proceso-steps { grid-template-columns: 1fr 1fr; }
      .equipo, .servicios, .proceso, .testimonios, .cta-section { padding: 4rem 2rem; }
      footer { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
      .trust-bar { grid-template-columns: 1fr; }
      .trust-items { padding: 1.4rem 2rem; gap: 1.5rem; }
      .trust-contact { min-width: unset; border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding: 1.2rem 2rem; }
      .footer-bottom { padding: 1rem 2rem; flex-direction: column; gap: 0.5rem; }
    }

/* Página Equipo */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --beige:       #f4ede4;
      --crudo:       #ede0d0;
      --terracota:   #b4503c;
      --terra-light: #c56450;
      --terra-dark:  #893024;
      --marron:      #5c3d2e;
      --blanco:      #faf7f3;
      --texto:       #3a2a1e;
      --gris:        #9a8a7e;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Jost', sans-serif;
      background: var(--blanco);
      color: var(--texto);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 4rem;
      background: rgba(250,247,243,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(181,97,74,0.12);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem; font-weight: 400; color: var(--texto);
      letter-spacing: 0.04em; text-decoration: none;
      display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
    }
    .nav-logo-main { display: flex; align-items: center; gap: 0.5rem; }
    .nav-logo span { color: var(--terracota); }
    .nav-logo-sub {
      font-size: 0.62rem; font-weight: 300; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--terracota); font-family: 'Jost', sans-serif;
    }
    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a {
      font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--texto); text-decoration: none; transition: color 0.3s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--terracota); }
    .nav-cta {
      background: var(--terracota); color: white;
      padding: 0.6rem 1.5rem; font-size: 0.78rem;
      font-family: 'Jost', sans-serif; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      border: none; cursor: pointer; transition: background 0.3s; text-decoration: none;
    }
    .nav-cta:hover { background: var(--terra-dark); }

    /* HEADER */
    .page-header {
      padding-top: 72px;
      background: var(--beige);
      padding-bottom: 0;
    }
    .page-header-inner {
      padding: 5rem 6rem 4rem;
    }
    .page-label {
      font-size: 0.7rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--terracota); margin-bottom: 1rem;
    }
    .page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4vw, 3.8rem);
      font-weight: 300; line-height: 1.08; color: var(--texto); margin-bottom: 1.2rem;
    }
    .page-title em { font-style: italic; color: var(--terracota); }
    .page-intro {
      font-size: 1rem; font-weight: 300; line-height: 1.8;
      color: var(--marron); max-width: 600px;
    }

    /* GRID PSICÓLOGAS */
    .equipo-section {
      background: var(--blanco);
      padding: 5rem 6rem;
    }
    .equipo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
    }
    .psi-card {
      background: var(--beige);
      overflow: hidden;
      transition: transform 0.3s;
    }
    .psi-card:hover { transform: translateY(-4px); }
    .psi-foto {
      height: 220px;
      display: flex; align-items: center; justify-content: center;
    }
    .psi-foto-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(255,255,255,0.22);
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.35);
    }
    .psi-foto-icon svg { opacity: 0.45; }
    .psi-body { padding: 1.5rem 1.4rem; }
    .psi-rol {
      font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--terracota); margin-bottom: 0.3rem;
    }
    .psi-nombre {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 400; color: var(--texto);
      margin-bottom: 0.2rem; line-height: 1.1;
    }
    .psi-titulo {
      font-size: 0.75rem; font-weight: 300; color: var(--gris);
      margin-bottom: 1rem; line-height: 1.4;
    }
    .psi-divider {
      width: 28px; height: 1.5px; background: var(--terracota); margin-bottom: 1rem;
    }
    .psi-desc {
      font-size: 0.85rem; font-weight: 300; line-height: 1.7;
      color: var(--marron); margin-bottom: 1.1rem;
    }
    .psi-esp {
      display: flex; flex-wrap: wrap; gap: 0.3rem 0.9rem;
    }
    .esp {
      font-size: 0.75rem; font-weight: 400;
      color: var(--terra-light);
      position: relative; padding-left: 0.8rem;
    }
    .esp::before {
      content: '·'; position: absolute; left: 0;
      color: var(--terracota); font-size: 1rem; top: -0.05em;
    }

    /* BANDA TATI */
    .tati-banda {
      background: var(--terracota);
      padding: 3.5rem 6rem;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 3rem;
      align-items: center;
    }
    .tati-avatar {
      width: 100px; height: 100px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .tati-avatar svg { opacity: 0.5; }
    .tati-info { }
    .tati-label {
      font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.55); margin-bottom: 0.3rem;
    }
    .tati-nombre {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: white; line-height: 1.1; margin-bottom: 0.2rem;
    }
    .tati-rol {
      font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.7); margin-bottom: 0.8rem;
    }
    .tati-desc {
      font-size: 0.92rem; font-weight: 300; line-height: 1.8;
      color: rgba(255,255,255,0.8); max-width: 560px;
    }
    .tati-contacto {
      display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; flex-shrink: 0;
    }
    .tati-horario {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      padding: 1rem 1.5rem; text-align: center;
    }
    .tati-horario-label {
      font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.55); margin-bottom: 0.3rem;
    }
    .tati-horario-horas {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300; color: white; line-height: 1;
    }
    .tati-horario-dias {
      font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem;
    }
    .tati-btns { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
    .tati-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      padding: 0.65rem 1.2rem; font-size: 0.76rem;
      letter-spacing: 0.09em; text-transform: uppercase;
      text-decoration: none; font-family: 'Jost', sans-serif; font-weight: 400;
      transition: all 0.3s; white-space: nowrap;
    }
    .tati-btn-tel { background: white; color: var(--terracota); }
    .tati-btn-tel:hover { background: var(--beige); }
    .tati-btn-wa {
      background: transparent; color: white;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .tati-btn-wa:hover { background: rgba(255,255,255,0.1); }

    /* CTA FINAL */
    .cta-strip {
      background: var(--texto); padding: 4rem 6rem;
      display: flex; align-items: center; justify-content: space-between; gap: 3rem;
    }
    .cta-strip h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 300; color: white; line-height: 1.2;
    }
    .cta-strip h2 em { font-style: italic; color: var(--terra-light); }
    .cta-strip p { color: rgba(255,255,255,0.6); font-size: 0.92rem; font-weight: 300; margin-top: 0.4rem; }
    .btn-white {
      background: white; color: var(--texto);
      padding: 1rem 2.2rem; font-size: 0.82rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: none; cursor: pointer;
      font-family: 'Jost', sans-serif; font-weight: 500;
      transition: all 0.3s; text-decoration: none; display: inline-block; white-space: nowrap;
    }
    .btn-white:hover { background: var(--crudo); }

    /* FOOTER */
    footer {
      background: var(--texto); padding: 3.5rem 6rem;
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem; align-items: start;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; color: var(--crudo); margin-bottom: 1rem;
    }
    .footer-logo span { color: var(--terra-light); }
    .footer-tagline { font-size: 0.85rem; font-weight: 300; color: rgba(237,224,208,0.6); line-height: 1.7; }
    .footer-col h4 {
      font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--terra-light); margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul li a {
      font-size: 0.85rem; font-weight: 300;
      color: rgba(237,224,208,0.7); text-decoration: none; transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: var(--crudo); }
    .footer-bottom {
      background: rgba(0,0,0,0.2); padding: 1rem 6rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p { font-size: 0.75rem; color: rgba(237,224,208,0.4); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      .page-header-inner { padding: 4rem 2rem 3rem; }
      .equipo-section { padding: 4rem 2rem; }
      .equipo-grid { grid-template-columns: 1fr 1fr; }
      .tati-banda { grid-template-columns: 1fr; padding: 3rem 2rem; text-align: center; }
      .tati-contacto { align-items: center; }
      .tati-btns { flex-direction: row; }
      .cta-strip { flex-direction: column; padding: 3rem 2rem; }
      footer { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
      .footer-bottom { padding: 1rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    }

/* WordPress integration */
body.admin-bar nav { top: 32px; }
.screen-reader-text { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.current-menu-item > a, .current_page_item > a { color: var(--terracota) !important; }
.ehr-content { padding: 8rem 6rem 5rem; max-width: 1180px; margin: 0 auto; }
.ehr-content h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,4vw,4rem); font-weight:300; margin-bottom:2rem; }
.ehr-content .entry-content { font-size:1rem; line-height:1.8; font-weight:300; }
@media (max-width:782px){ body.admin-bar nav{top:46px;} }
@media (max-width:900px){ .ehr-content{padding:7rem 2rem 4rem;} }

/* Equipo editable desde WordPress */
.equipo-page-editor-content > *:first-child { margin-top: 0; }
.equipo-page-editor-content > *:last-child { margin-bottom: 0; }
.equipo-page-editor-content .page-label { margin-bottom: 1rem; }
.equipo-page-editor-content .page-title { margin-bottom: 1.2rem; }
.equipo-page-editor-content .page-intro { margin-bottom: 0; }
.psi-foto { background: linear-gradient(160deg,#c9b09a,#a88570); overflow: hidden; }
.psi-foto.has-photo { background: var(--crudo); }
.psi-photo-image { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.psi-desc > * { margin: 0 0 .7rem; }
.psi-desc > *:last-child { margin-bottom: 0; }
.tati-avatar.has-photo { overflow: hidden; padding: 0; }
.tati-photo-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.tati-desc > * { margin: 0; }
.ehr-empty-team { grid-column: 1/-1; padding: 2rem; background: var(--beige); text-align: center; }
@media (max-width: 560px) {
  .equipo-grid { grid-template-columns: 1fr; }
  .tati-btns { flex-direction: column; }
}

/* Footer: datos de contacto con iconos SVG */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 34px;
  color: rgba(250, 247, 243, 0.78);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 100, 80, 0.62);
  border-radius: 50%;
  background: rgba(180, 80, 60, 0.2);
  color: var(--terra-light);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item:nth-child(2) .footer-contact-icon svg {
  fill: currentColor;
  stroke: none;
}

.footer-contact-item:hover,
.footer-contact-item:focus-visible {
  color: var(--crudo);
  transform: translateX(3px);
}

.footer-contact-item:hover .footer-contact-icon,
.footer-contact-item:focus-visible .footer-contact-icon {
  background: var(--terracota);
  border-color: var(--terra-light);
  color: #fff;
}

.footer-contact-item:focus-visible {
  outline: 2px solid var(--terra-light);
  outline-offset: 4px;
}

@media (max-width: 520px) {
  .footer-contact-item {
    font-size: 0.82rem;
  }

  .footer-contact-item:last-child {
    overflow-wrap: anywhere;
  }
}

/* ── Ajustes v1.1.4: navegación móvil, cita del hero y footer inferior ── */
.nav-panel {
  display: contents;
}

.nav-toggle,
.nav-mobile-cta {
  display: none;
}

.video-quote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.35;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 12px rgba(58,42,30,0.35);
}

.footer-bottom {
  background: var(--crudo);
  border-top: 1px solid rgba(58,42,30,0.12);
}

.footer-bottom p {
  color: rgb(58 42 30);
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 1;
}

@media (max-width: 900px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .site-nav {
    min-height: 72px;
    padding: 0.9rem 1.25rem;
  }

  .site-nav .nav-logo {
    position: relative;
    z-index: 103;
  }

  .site-nav > .nav-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 103;
    display: inline-flex;
    width: 46px;
    height: 46px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid rgba(180,80,60,0.28);
    background: var(--blanco);
    color: var(--texto);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .site-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-panel {
    /*
     * El panel es absoluto respecto de la cabecera. Esto evita que
     * backdrop-filter convierta el nav en un contenedor incorrecto
     * para un descendiente fixed y reduzca el menú a la altura del header.
     */
    position: absolute;
    z-index: 102;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2rem;
    background: rgba(250,247,243,0.99);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

  .site-nav.menu-open .nav-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .site-nav .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(180,80,60,0.14);
  }

  .site-nav .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 0.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .site-nav .nav-links .sub-menu {
    position: static;
    display: block;
    margin: -0.35rem 0 0.65rem;
    padding-left: 1rem;
    list-style: none;
  }

  .site-nav .nav-links .sub-menu li {
    border: 0;
  }

  .site-nav .nav-links .sub-menu a {
    padding: 0.55rem 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .nav-mobile-cta {
    display: block;
    margin-top: 1.5rem;
    padding: 0.95rem 1.25rem;
    background: var(--terracota);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .video-overlay-text {
    bottom: 1.75rem;
    left: 1.5rem;
    right: 1.5rem;
  }

  .video-quote {
    font-size: 1.25rem;
  }

  .footer-bottom p {
    line-height: 1.55;
    text-align: center;
  }
}

/* ── Ajuste v1.1.5: altura completa del panel móvil ── */
