:root {
      --verde-profundo: #2d5016;
      --verde-musgo: #4a7c2f;
      --verde-salvia: #7aab5a;
      --verde-claro: #b8d4a0;
      --verde-pálido: #e8f0e1;
      --tierra: #8b5e3c;
      --tierra-claro: #c4956a;
      --crema: #f7f3ec;
      --crema-oscuro: #ede6d8;
      --blanco: #fdfaf6;
      --texto-oscuro: #1e2d16;
      --texto-medio: #4a5e3a;
      --texto-suave: #7a8f6e;
    }

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

    html { scroll-behavior: smooth; }

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

    /* ─── NAVBAR ─────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4rem;
      height: 70px;
      background: var(--blanco);
      border-bottom: 2px solid var(--verde-pálido);
      transition: box-shadow 0.3s;
    }

    nav.scrolled {
      box-shadow: 0 4px 24px rgba(45, 80, 22, 0.1);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--verde-profundo);
      letter-spacing: 0.02em;
      text-decoration: none;
      white-space: nowrap;
    }

    .nav-logo span { color: var(--tierra); font-style: italic; }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--verde-profundo);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 2px;
      background: var(--verde-salvia);
      transform: scaleX(0);
      transition: transform 0.2s;
      transform-origin: left;
    }

    .nav-links a:hover { color: var(--verde-musgo); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      background: var(--verde-profundo) !important;
      color: var(--blanco) !important;
      padding: 0.65rem 1.4rem !important;
      border-radius: 2rem;
      font-size: 0.78rem !important;
      letter-spacing: 0.08em !important;
      transition: background 0.2s, transform 0.2s !important;
    }

    .nav-cta::after { display: none !important; }

    .nav-cta:hover {
      background: var(--verde-musgo) !important;
      transform: translateY(-1px);
    }

    /* ─── HERO ───────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 80px;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 3rem 5rem 5rem;
      position: relative;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--tierra);
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .hero-tag::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--tierra-claro);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--verde-profundo);
      margin-bottom: 1.5rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--tierra);
    }

    .hero-desc {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--texto-medio);
      max-width: 420px;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-primary {
      background: var(--verde-profundo);
      color: var(--blanco);
      padding: 1rem 2rem;
      border-radius: 3rem;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(45, 80, 22, 0.25);
    }

    .btn-primary:hover {
      background: var(--verde-musgo);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(45, 80, 22, 0.3);
    }

    .btn-secondary {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--texto-medio);
      font-size: 0.85rem;
      text-decoration: none;
      transition: color 0.2s;
    }

    .btn-secondary:hover { color: var(--verde-profundo); }

    .btn-secondary svg { width: 18px; fill: #25D366; }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--crema-oscuro);
    }

    .hero-stat strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--verde-profundo);
    }

    .hero-stat span {
      font-size: 0.78rem;
      color: var(--texto-suave);
      letter-spacing: 0.05em;
    }

    .hero-right {
      position: relative;
      background: var(--verde-pálido);
      overflow: hidden;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 30%, rgba(122,171,90,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 94, 60, 0.15) 0%, transparent 50%);
    }

    .hero-img-container {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
    }

    .hero-img-placeholder {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 2rem 0 0 2rem;
    }

    /* SVG decorative illustration for hero */
    .hero-illustration {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .floating-card {
      position: absolute;
      background: rgba(253, 250, 246, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      padding: 1rem 1.4rem;
      box-shadow: 0 8px 32px rgba(45,80,22,0.15);
      animation: float 6s ease-in-out infinite;
    }

    .floating-card:nth-child(2) { animation-delay: -2s; }
    .floating-card:nth-child(3) { animation-delay: -4s; }

    .card-one {
      bottom: 15%;
      left: -5%;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .card-two {
      top: 20%;
      right: 5%;
    }

    .card-icon {
      width: 36px;
      height: 36px;
      background: var(--verde-pálido);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .card-text strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--verde-profundo);
    }

    .card-text span {
      font-size: 0.72rem;
      color: var(--texto-suave);
    }

    .card-rating {
      display: flex;
      gap: 2px;
      margin-bottom: 0.2rem;
    }

    .star { color: #f5a623; font-size: 0.7rem; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* ─── SECCIÓN GENÉRICA ───────────────────── */
    section { padding: 6rem 5rem; }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--tierra);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .section-tag::before {
      content: '';
      display: block;
      width: 1.5rem;
      height: 1px;
      background: var(--tierra-claro);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--verde-profundo);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }

    .section-title em { font-style: italic; color: var(--tierra); }

    .section-subtitle {
      font-size: 1rem;
      color: var(--texto-medio);
      line-height: 1.8;
      font-weight: 300;
      max-width: 540px;
    }

    /* ─── MISIÓN Y VISIÓN ────────────────────── */
    #mision {
      background: var(--verde-profundo);
      color: var(--blanco);
      position: relative;
      overflow: hidden;
    }

    #mision::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(122,171,90,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .mision-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      position: relative;
    }

    .mision-card {
      padding: 3rem;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 1.5rem;
      background: rgba(255,255,255,0.05);
      transition: background 0.3s, border-color 0.3s;
    }

    .mision-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(122,171,90,0.4);
    }

    .mision-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .mision-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--verde-claro);
      margin-bottom: 1rem;
    }

    .mision-card p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: rgba(232, 240, 225, 0.8);
      font-weight: 300;
    }

    .mision-valores {
      grid-column: 1 / -1;
      margin-top: 1rem;
    }

    .mision-valores h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--verde-claro);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .valores-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .valor-chip {
      padding: 0.6rem 1.4rem;
      border: 1px solid rgba(122, 171, 90, 0.4);
      border-radius: 2rem;
      font-size: 0.82rem;
      color: var(--verde-claro);
      letter-spacing: 0.05em;
    }

    /* ─── NOSOTROS ───────────────────────────── */
    #nosotros {
      background: var(--crema);
    }

    .nosotros-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .nosotros-content .section-subtitle {
      max-width: 100%;
      margin-bottom: 2rem;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .feature-dot {
      width: 8px;
      height: 8px;
      background: var(--verde-salvia);
      border-radius: 50%;
      margin-top: 0.5rem;
      flex-shrink: 0;
    }

    .feature-item p {
      font-size: 0.92rem;
      color: var(--texto-medio);
      line-height: 1.7;
    }

    .nosotros-visual {
      position: relative;
    }

    .team-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .team-card {
      background: var(--blanco);
      border-radius: 1.2rem;
      padding: 1.8rem;
      text-align: center;
      box-shadow: 0 4px 20px rgba(45,80,22,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(45,80,22,0.14);
    }

    .team-card:first-child {
      grid-column: 1 / -1;
    }

    .team-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--verde-pálido);
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      border: 3px solid var(--verde-claro);
    }

    .team-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--verde-profundo);
      margin-bottom: 0.3rem;
    }

    .team-card span {
      font-size: 0.75rem;
      color: var(--tierra);
      letter-spacing: 0.05em;
    }

    /* ─── TERAPIAS ───────────────────────────── */
    #terapias {
      background: var(--blanco);
    }

    .terapias-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.5rem;
    }

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

    .terapia-card {
      background: var(--crema);
      border-radius: 1.5rem;
      padding: 2.2rem;
      transition: all 0.3s;
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .terapia-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 120px; height: 120px;
      border-radius: 0 1.5rem 0 100%;
      background: var(--verde-pálido);
      transition: transform 0.3s;
    }

    .terapia-card:hover {
      background: var(--verde-pálido);
      border-color: var(--verde-claro);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(45,80,22,0.12);
    }

    .terapia-card:hover::before {
      background: rgba(122,171,90,0.2);
    }

    .terapia-emoji {
      font-size: 2rem;
      margin-bottom: 1.2rem;
      display: block;
      position: relative;
      z-index: 1;
    }

    .terapia-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--verde-profundo);
      margin-bottom: 0.8rem;
    }

    .terapia-card p {
      font-size: 0.87rem;
      color: var(--texto-medio);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ─── PRECIOS ────────────────────────────── */
    #precios {
      background: var(--crema);
    }

    .precios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .precio-card {
      background: var(--blanco);
      border-radius: 1.5rem;
      padding: 2.5rem;
      text-align: center;
      border: 2px solid transparent;
      transition: all 0.3s;
      position: relative;
    }

    .precio-card.destacado {
      border-color: var(--verde-musgo);
      background: var(--verde-profundo);
      color: var(--blanco);
    }

    .precio-card:not(.destacado):hover {
      border-color: var(--verde-claro);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(45,80,22,0.12);
    }

    .precio-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--tierra);
      color: var(--blanco);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 1rem;
      border-radius: 2rem;
    }

    .precio-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .precio-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--verde-profundo);
    }

    .precio-card.destacado h3 { color: var(--verde-claro); }

    .precio-card .duracion {
      font-size: 0.78rem;
      color: var(--texto-suave);
      letter-spacing: 0.05em;
      margin-bottom: 0.3rem;
    }

    .precio-card.destacado .duracion { color: rgba(232,240,225,0.7); }

    .precio-card .modalidad {
      font-size: 0.78rem;
      color: var(--texto-suave);
      margin-bottom: 1.8rem;
    }

    .precio-card.destacado .modalidad { color: rgba(232,240,225,0.7); }

    .precio-valor {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--verde-profundo);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .precio-card.destacado .precio-valor { color: var(--blanco); }

    .precio-unit {
      font-size: 0.75rem;
      color: var(--texto-suave);
      margin-bottom: 2rem;
    }

    .precio-card.destacado .precio-unit { color: rgba(232,240,225,0.7); }

    .btn-precio {
      display: block;
      padding: 0.8rem;
      border-radius: 2rem;
      font-size: 0.82rem;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: all 0.2s;
      background: var(--verde-pálido);
      color: var(--verde-profundo);
    }

    .btn-precio:hover {
      background: var(--verde-claro);
    }

    .precio-card.destacado .btn-precio {
      background: var(--verde-salvia);
      color: var(--blanco);
    }

    .precio-card.destacado .btn-precio:hover {
      background: var(--verde-claro);
      color: var(--verde-profundo);
    }

    /* ─── CONTACTO ───────────────────────────── */
    #contacto {
      background: var(--blanco);
    }

    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .contacto-info .section-subtitle {
      max-width: 100%;
      margin-bottom: 2.5rem;
    }

    .contacto-items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contacto-item {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
    }

    .contacto-item-icon {
      width: 44px;
      height: 44px;
      background: var(--verde-pálido);
      border-radius: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contacto-item-text strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--verde-profundo);
      margin-bottom: 0.2rem;
    }

    .contacto-item-text span {
      font-size: 0.85rem;
      color: var(--texto-medio);
    }

    .contacto-form {
      background: var(--crema);
      border-radius: 2rem;
      padding: 3rem;
    }

    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--verde-profundo);
      margin-bottom: 1.8rem;
    }

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

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--texto-suave);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      background: var(--blanco);
      border: 1px solid var(--crema-oscuro);
      border-radius: 0.8rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      color: var(--texto-oscuro);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--verde-salvia);
      box-shadow: 0 0 0 3px rgba(122,171,90,0.15);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .btn-form {
      width: 100%;
      padding: 1rem;
      background: var(--verde-profundo);
      color: var(--blanco);
      border: none;
      border-radius: 2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 0.5rem;
    }

    .btn-form:hover {
      background: var(--verde-musgo);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(45,80,22,0.25);
    }

    /* ─── FOOTER ─────────────────────────────── */

    /* ─── PROFESIONALES ─────────────────────── */
    #profesionales {
      background: var(--crema);
    }
    .prof-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 4rem;
    }
    .prof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }
    .prof-card {
      background: var(--blanco);
      border-radius: 1.8rem;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(45,80,22,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .prof-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(45,80,22,0.14);
    }
    .prof-photo {
      width: 100%;
      aspect-ratio: 3/2;
      background: linear-gradient(135deg, var(--verde-pálido) 0%, var(--crema-oscuro) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .prof-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .prof-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(45,80,22,0.85);
      color: var(--verde-claro);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.35rem 0.8rem;
      border-radius: 2rem;
    }
    .prof-body { padding: 1.3rem 1.4rem 1.4rem; }
    .prof-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--verde-profundo);
      margin-bottom: 0.2rem;
    }
    .prof-titulo {
      font-size: 0.78rem;
      color: var(--tierra);
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
    }
    .prof-bio {
      font-size: 0.82rem;
      color: var(--texto-medio);
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 1.2rem;
    }
    .prof-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1.4rem;
    }
    .prof-tag {
      font-size: 0.7rem;
      padding: 0.3rem 0.75rem;
      background: var(--verde-pálido);
      color: var(--verde-musgo);
      border-radius: 2rem;
      font-weight: 500;
      border: 1px solid var(--verde-claro);
    }
    .prof-footer-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.2rem;
      border-top: 1px solid var(--crema-oscuro);
    }
    .prof-modalidad {
      font-size: 0.75rem;
      color: var(--texto-suave);
    }
    .btn-prof {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--verde-profundo);
      text-decoration: none;
      background: var(--verde-pálido);
      padding: 0.45rem 1rem;
      border-radius: 2rem;
      transition: all 0.2s;
      border: 1px solid var(--verde-claro);
    }
    .btn-prof:hover {
      background: var(--verde-profundo);
      color: var(--blanco);
    }
    @media (max-width: 1100px) { .prof-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
    @media (max-width: 580px) { .prof-grid { grid-template-columns: 1fr; } }

    footer {
      background: var(--texto-oscuro);
      color: rgba(232,240,225,0.7);
      padding: 3rem 5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--verde-claro);
    }

    .footer-logo em { font-style: italic; color: var(--tierra-claro); }

    footer p {
      font-size: 0.8rem;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: rgba(232,240,225,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--verde-claro); }

    /* ─── DECORACIÓN DE FONDO ────────────────── */
    .bg-leaves {
      position: absolute;
      pointer-events: none;
      opacity: 0.06;
    }

    /* ─── ANIMACIONES DE ENTRADA ─────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── RESPONSIVE ─────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 1rem 2rem; }
      .nav-links { display: none; }
      section { padding: 4rem 2rem; }
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 3rem 2rem 2rem; }
      .hero-right { height: 300px; }
      .nosotros-grid,
      .contacto-grid,
      .mision-grid { grid-template-columns: 1fr; gap: 2rem; }
      .terapias-grid,
      .precios-grid { grid-template-columns: 1fr 1fr; }
      footer { flex-direction: column; gap: 1.5rem; text-align: center; }
      .terapias-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    }

    @media (max-width: 580px) {
      .terapias-grid,
      .precios-grid { grid-template-columns: 1fr; }
      .team-cards { grid-template-columns: 1fr; }
      .team-card:first-child { grid-column: auto; }
      .form-row { grid-template-columns: 1fr; }
    }