    :root {
      --background: 46 27% 92%;
      --foreground: 20 10% 25%;
      --card: 0 0% 100%;
      --card-foreground: 20 10% 25%;
      --primary: 13 30% 54%;
      --primary-foreground: 0 0% 100%;
      --secondary: 110 10% 61%;
      --secondary-foreground: 0 0% 100%;
      --muted: 46 27% 84%;
      --muted-foreground: 20 10% 40%;
      --accent: 25 33% 74%;
      --accent-foreground: 20 10% 20%;
      --destructive: 0 84% 60%;
      --border: 46 20% 80%;
      --ring: 13 30% 54%;
      --radius: 0.75rem;
      --sage: 110 10% 61%;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; border-color: hsl(var(--border)); }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Source Sans 3', system-ui, sans-serif;
      background: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
    }
    h1, h2, h3, h4, h5, h6 { font-family: 'Merriweather', Georgia, serif; }

    /* ===== HEADER ===== */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      transition: all 0.3s;
    }
    .header.scrolled {
      background: hsla(var(--card) / 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    .header-inner {
      max-width: 72rem; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.5rem;
    }
    .header-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
    .header-logo img { height: 5rem; width: 10rem; }
    .header-logo span { font-family: 'Merriweather', serif; font-size: 1.125rem; font-weight: 700; color: hsl(var(--foreground)); }
    .nav-desktop { display: none; gap: 2rem; }
    .nav-desktop a {
      font-size: 0.875rem; font-weight: 500; color: hsl(var(--muted-foreground));
      text-decoration: none; transition: color 0.2s;
    }
    .nav-desktop a:hover { color: hsl(var(--primary)); }
    .menu-btn {
      display: block; background: none; border: none; cursor: pointer;
      color: hsl(var(--foreground)); padding: 0.25rem;
    }
    .menu-btn svg { width: 24px; height: 24px; }
    .nav-mobile {
      display: none; background: hsla(var(--card) / 0.95);
      backdrop-filter: blur(12px); border-top: 1px solid hsl(var(--border));
      padding: 0 1.5rem 1.5rem; flex-direction: column; gap: 1rem;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-size: 0.875rem; font-weight: 500; color: hsl(var(--muted-foreground));
      text-decoration: none; transition: color 0.2s;
    }
    .nav-mobile a:hover { color: hsl(var(--primary)); }

    @media (min-width: 768px) {
      .nav-desktop { display: flex; }
      .menu-btn { display: none; }
    }

    /* ===== SECTIONS ===== */
    .section {
      padding: 5rem 1.5rem;
      display: flex; align-items: center;
    }
    @media (min-width: 768px) {
      .section { padding: 7rem 1.5rem; min-height: 85vh; }
    }
    @media (min-width: 1024px) {
      .section { padding: 9rem 1.5rem; }
    }
    .section-inner { max-width: 72rem; margin: 0 auto; width: 100%; }
    .section-bg-card { background: hsl(var(--card)); }
    .section-label {
      font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary));
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; text-align: center;
    }
    .section-title {
      font-size: 1.875rem; color: hsl(var(--foreground)); margin-bottom: 3.5rem; text-align: center;
    }
    @media (min-width: 768px) { .section-title { font-size: 2.25rem; } }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 100vh; display: flex;
      align-items: center; justify-content: center; overflow: hidden;
    }
    .hero-bg { position: absolute; inset: 0; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, hsla(var(--card) / 0.9), hsla(var(--card) / 0.7), hsla(var(--card) / 0.4));
    }
    .hero-content {
      position: relative; z-index: 10; max-width: 48rem;
      margin: 0 auto; padding: 0 1.5rem; text-align: center;
    }
    @media (min-width: 768px) { .hero-content { text-align: left; } }
    .hero h1 {
  font-size: 2.25rem; /* antes 2.25rem */
  line-height: 1.2;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero h1 { font-size: 2.5rem; } } /* antes 3rem */
@media (min-width: 1024px) { .hero h1 { font-size: 3rem; } } /* antes 3.75rem */
    @media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
    @media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
    .hero p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); margin-bottom: 2.5rem; max-width: 36rem; }
  .btn-primary {
    display: inline-block;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 1rem 2rem; /* antes 1rem 2rem */
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.125rem; /* antes 1rem */
    text-decoration: none;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
  }
    .btn-primary:hover { opacity: 0.9; }

    /* ===== ABOUT ===== */
    .about-text { max-width: 42rem; }
    .about-text p { color: hsl(var(--muted-foreground)); line-height: 1.8; margin-bottom: 1rem; }
    .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* desktop */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: center; /* centra verticalmente las 2 columnas */
  }
}

/* texto */
.about-text {
  max-width: 100%;
}

.about-text p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* imagen */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* imagen a la izquierda */
@media (min-width: 768px) {
  .about-grid.image-left { grid-template-columns: 1fr 1.3fr; }
}

/* fotos horizontales */
.about-image.horizontal img {
  max-width: 520px;
  aspect-ratio: 4 / 3;
}

/* faq blanco (cómo trabajo) */
.faq-list.white .faq-item { background: #ffffff; }
.faq-list.white .faq-question { background: #ffffff; }
.about-quote {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: hsl(var(--foreground));
  line-height: 1.8;
  margin-top: 1.5rem;
  border-left: 3px solid hsl(var(--primary));
  padding-left: 1rem;
}




    /* ===== GRID CARDS ===== */
    .grid-2 { display: grid; gap: 1.5rem; }
    .grid-3 { display: grid; gap: 1.5rem; }
    .grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    @media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

    .therapy-card {
      background: hsl(var(--card)); border-radius: 0.75rem; padding: 1.5rem;
      border: 1px solid hsl(var(--border)); transition: box-shadow 0.2s;
    }
    .therapy-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .therapy-card h3 { font-size: 1.125rem; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
    .therapy-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
    /* SOLO especialidades */
    /* SOLO especialidades (más específico) */
  .grid-3.grid-especialidades {
    grid-template-columns: repeat(3, 1fr);
  }

/* tablet */
  @media (min-width: 768px) {
    .grid-3.grid-especialidades {
      grid-template-columns: repeat(4, 1fr);
    }
  }

/* ordenador */
  @media (min-width: 1024px) {
    .grid-3.grid-especialidades {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  .especialidades-lista {
  display: grid;
  gap: 1rem; /* antes 0.75 → un poco más de aire */
}

/* 2 columnas en móvil */
@media (min-width: 480px) {
  .especialidades-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columnas en tablet */
@media (min-width: 768px) {
  .especialidades-lista {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4 columnas en ordenador */
@media (min-width: 1024px) {
  .especialidades-lista {
    grid-template-columns: repeat(4, 1fr);
  }
}

.especialidad-item {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* antes 0.6 */
  font-size: 1rem; /* antes 0.95 */
  color: hsl(var(--foreground));
}

.especialidad-item img {
  width: 30px;   /* antes 16px */
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}


    /* ===== SPECIALTIES ===== */
    .specialty { text-align: center; padding: 2rem; }
  .specialty-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden; /* 🔥 CLAVE */
    background: hsl(var(--muted));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .specialty-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 CLAVE */
  }

    .specialty-icon svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary)); }
    .specialty h3 { font-size: 1.25rem; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
    .specialty p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
    .section-subtitle {
      max-width: 42rem;
      margin: -2rem auto 3rem;
      text-align: center;
      font-size: 1rem;
      color: hsl(var(--muted-foreground));
      line-height: 1.7;
    }

    /* ===== ADVANTAGES ===== */
    .advantage { text-align: center; }
    .advantage-icon {
      width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem;
      border-radius: 50%; background: hsla(var(--accent) / 0.5);
      display: flex; align-items: center; justify-content: center;
    }
    .advantage-icon svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); }
    .advantage h3 { font-size: 1rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.25rem; }
    .advantage p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

    /* ===== PROCESS ===== */
    .step-num {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    }

    .step-num.visible {
    opacity: 1;
    transform: translateY(0);
    }
    .step:nth-child(1) .step-num { transition-delay: 0.1s; }
    .step:nth-child(2) .step-num { transition-delay: 0.3s; }
    .step:nth-child(3) .step-num { transition-delay: 0.5s; }
    .step:nth-child(4) .step-num { transition-delay: 0.7s; }

    .step .step-num { font-family: 'Merriweather', serif; font-size: 3rem; font-weight: 700; color: hsl(var(--primary)); }
    .step h3 { font-size: 1.125rem; color: hsl(var(--foreground)); margin: 0.5rem 0; }
    .step p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

    .proceso-btn {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-proceso {
  display: inline-block;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-proceso:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.step .step-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 5rem;
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #5a6e5a;
  z-index: 1;
  transition: transform 0.4s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.step .step-num:hover {
  transform: scale(1.1) rotate(5deg);
}

.step:nth-child(1) .step-num {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='28' rx='22' ry='30' fill='%23c8d5b9' opacity='.55'/%3E%3Cellipse cx='88' cy='48' rx='22' ry='30' fill='%23d5dfc8' opacity='.45' transform='rotate(60 88 48)'/%3E%3Cellipse cx='88' cy='82' rx='22' ry='30' fill='%23c8d5b9' opacity='.45' transform='rotate(120 88 82)'/%3E%3Cellipse cx='60' cy='98' rx='22' ry='30' fill='%23dce8d2' opacity='.4' transform='rotate(180 60 98)'/%3E%3Cellipse cx='32' cy='82' rx='22' ry='30' fill='%23c8d5b9' opacity='.45' transform='rotate(240 32 82)'/%3E%3Cellipse cx='32' cy='48' rx='22' ry='30' fill='%23d5dfc8' opacity='.5' transform='rotate(300 32 48)'/%3E%3Ccircle cx='60' cy='60' r='20' fill='%23f8f4ef' opacity='.9'/%3E%3Ccircle cx='60' cy='60' r='20' fill='none' stroke='%23d5ccbb' stroke-width='.5' opacity='.4'/%3E%3C/svg%3E");
}

.step:nth-child(2) .step-num {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='28' rx='22' ry='30' fill='%23e0d5c4' opacity='.55'/%3E%3Cellipse cx='88' cy='48' rx='22' ry='30' fill='%23ecdcc8' opacity='.45' transform='rotate(60 88 48)'/%3E%3Cellipse cx='88' cy='82' rx='22' ry='30' fill='%23e0d5c4' opacity='.45' transform='rotate(120 88 82)'/%3E%3Cellipse cx='60' cy='98' rx='22' ry='30' fill='%23f0e4d5' opacity='.4' transform='rotate(180 60 98)'/%3E%3Cellipse cx='32' cy='82' rx='22' ry='30' fill='%23e0d5c4' opacity='.45' transform='rotate(240 32 82)'/%3E%3Cellipse cx='32' cy='48' rx='22' ry='30' fill='%23ecdcc8' opacity='.5' transform='rotate(300 32 48)'/%3E%3Ccircle cx='60' cy='60' r='20' fill='%23faf6f0' opacity='.9'/%3E%3Ccircle cx='60' cy='60' r='20' fill='none' stroke='%23ddd0bb' stroke-width='.5' opacity='.4'/%3E%3C/svg%3E");
}

.step:nth-child(3) .step-num {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='28' rx='22' ry='30' fill='%23f2d4d7' opacity='.55'/%3E%3Cellipse cx='88' cy='48' rx='22' ry='30' fill='%23f5dde0' opacity='.45' transform='rotate(60 88 48)'/%3E%3Cellipse cx='88' cy='82' rx='22' ry='30' fill='%23f2d4d7' opacity='.45' transform='rotate(120 88 82)'/%3E%3Cellipse cx='60' cy='98' rx='22' ry='30' fill='%23f8e0e3' opacity='.4' transform='rotate(180 60 98)'/%3E%3Cellipse cx='32' cy='82' rx='22' ry='30' fill='%23f2d4d7' opacity='.45' transform='rotate(240 32 82)'/%3E%3Cellipse cx='32' cy='48' rx='22' ry='30' fill='%23f5dde0' opacity='.5' transform='rotate(300 32 48)'/%3E%3Ccircle cx='60' cy='60' r='20' fill='%23fdf5f5' opacity='.9'/%3E%3Ccircle cx='60' cy='60' r='20' fill='none' stroke='%23e8c8cc' stroke-width='.5' opacity='.4'/%3E%3C/svg%3E");
}

.step:nth-child(4) .step-num {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='28' rx='22' ry='30' fill='%23b8c9a8' opacity='.55'/%3E%3Cellipse cx='88' cy='48' rx='22' ry='30' fill='%23c5d4b5' opacity='.45' transform='rotate(60 88 48)'/%3E%3Cellipse cx='88' cy='82' rx='22' ry='30' fill='%23b8c9a8' opacity='.45' transform='rotate(120 88 82)'/%3E%3Cellipse cx='60' cy='98' rx='22' ry='30' fill='%23cddcbc' opacity='.4' transform='rotate(180 60 98)'/%3E%3Cellipse cx='32' cy='82' rx='22' ry='30' fill='%23b8c9a8' opacity='.45' transform='rotate(240 32 82)'/%3E%3Cellipse cx='32' cy='48' rx='22' ry='30' fill='%23c5d4b5' opacity='.5' transform='rotate(300 32 48)'/%3E%3Ccircle cx='60' cy='60' r='20' fill='%23f5f2eb' opacity='.9'/%3E%3Ccircle cx='60' cy='60' r='20' fill='none' stroke='%23c5bbaa' stroke-width='.5' opacity='.4'/%3E%3C/svg%3E");
}


    /* ===== REVIEWS ===== */
    .review-card {
      background: hsl(var(--card)); border-radius: 1rem; padding: 2.5rem;
      border: 1px solid hsl(var(--border)); text-align: center;
      max-width: 42rem; margin: 0 auto;
    }
    .review-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; }
    .review-stars svg { width: 1.25rem; height: 1.25rem; fill: hsl(var(--primary)); color: hsl(var(--primary)); }
    .review-text { color: hsl(var(--muted-foreground)); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
    .review-name { font-family: 'Merriweather', serif; font-weight: 700; color: hsl(var(--foreground)); }
    .review-nav { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
    .review-nav button {
      background: none; border: none; cursor: pointer; padding: 0.25rem;
      color: hsl(var(--muted-foreground)); transition: color 0.2s;
    }
    .review-nav button:hover { color: hsl(var(--primary)); }
    .review-dot {
      width: 0.625rem; height: 0.625rem; border-radius: 50%;
      background: hsl(var(--border)); border: none; cursor: pointer; padding: 0; transition: background 0.2s;
    }
  .review-dot.active { background: hsl(var(--primary)); }
  .review-link {
  display: inline-block;
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid hsl(var(--primary));
  padding-bottom: 2px;
  transition: opacity 0.2s;
  }
  .review-link:hover {
  opacity: 0.8;
  }

  /* PRECIOS */
  #precios {
  background: #ffffff;
  }
  .pricing-card {
  max-width: 22rem;
  margin: 0;
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  padding: 2.5rem;
  transition: box-shadow 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.pricing-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgb(194, 170, 36);
  margin-bottom: 0.5rem;
}
.pricing-card {
  background: #ececec;
}
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* para móvil */
}
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: stretch; /* 👈 clave */
}

.pricing-card {
  flex: 1;
  max-width: 22rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 👈 equilibra el contenido */
}

    /* ===== CONTACT ===== */
    .contact-grid { display: grid; gap: 3rem; max-width: 56rem; margin: 0 auto; }
    @media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground)); margin-bottom: 0.25rem; }
    .form-group input, .form-group textarea {
      width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius);
      border: 1px solid hsl(var(--border)); background: hsl(var(--background));
      color: hsl(var(--foreground)); font-family: inherit; font-size: 1rem;
      outline: none; transition: all 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsla(var(--primary) / 0.3);
    }
    .form-group textarea { resize: none; }
    .form-error { color: hsl(var(--destructive)); font-size: 0.75rem; margin-top: 0.25rem; }
    .form-privacy { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
    .btn-send {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
      padding: 0.75rem 1.5rem; border-radius: var(--radius);
      font-weight: 600; border: none; cursor: pointer; transition: opacity 0.2s;
    }
    .btn-send:hover { opacity: 0.9; }
    .btn-send svg { width: 1rem; height: 1rem; }
    .contact-alt { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.5rem; }
    .contact-alt p { color: hsl(var(--muted-foreground)); line-height: 1.6; }
    .btn-whatsapp {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: hsl(var(--sage)); color: hsl(var(--primary-foreground));
      padding: 0.75rem 1.5rem; border-radius: var(--radius);
      font-weight: 600; text-decoration: none; transition: opacity 0.2s;
    }
    .btn-whatsapp:hover { opacity: 0.9; }
    .btn-whatsapp svg { width: 1.25rem; height: 1.25rem; }

    #contacto.section.section-bg-card {
      background: #faf7ee !important;
    }

    /* ===== FAQ ===== */
    .faq-list { max-width: 42rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .faq-item { border: 1px solid hsl(var(--border)); border-radius: 0.75rem; overflow: hidden; background: hsl(var(--card)); }
    .faq-question {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 1.5rem; text-align: left; background: none; border: none;
      cursor: pointer; font-family: 'Merriweather', serif; font-weight: 500;
      color: hsl(var(--foreground)); font-size: 1rem;
    }
    .faq-question svg {
      width: 1.25rem; height: 1.25rem; color: hsl(var(--muted-foreground));
      flex-shrink: 0; transition: transform 0.3s;
    }
    .faq-question.open svg { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-answer.open { max-height: 300px; }
    .faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
    #faq {
      background: #faf7ee;
    }
    .faq-item {
      background: #faf7ee;
      border: 1px solid #d6d1ba;
    }
    .faq-question {
      background: #faf7ee;
      }

    .section#faq {
      background: #ffffff;
    }
    /* ===== FOOTER ===== */
    .footer-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    }
    .footer-desc,
    .footer-contact,
    .footer-social {
    max-width: 300px;
    }
    .footer-desc {
    max-width: 300px;
    }

    .footer { background: #99a493; /* tono pastel */; color: white; padding: 4rem 1.5rem; }
    .footer-inner { max-width: 72rem; margin: 0 auto; }
    .footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
    .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
   

    .footer-logo span { font-family: 'Merriweather', serif; font-size: 1.125rem; font-weight: 700; color: hsl(var(--background)); }
    .footer p, .footer .footer-desc { font-size: 0.875rem; color: rgb(209, 206, 206); }
    .footer h4 { font-family: 'Merriweather', serif; color: hsl(var(--background)); font-weight: 700; margin-bottom: 1rem; }
    .footer-social { display: flex; gap: 1rem; }
    .footer-social a { color: hsla(var(--background) / 0.6); transition: color 0.2s; }
    .footer-social a:hover { color: hsl(var(--background)); }
    .footer-social svg { width: 1.375rem; height: 1.375rem; }
    .footer-bottom {
      border-top: 1px solid hsla(var(--background) / 0.1); padding-top: 2rem;
      display: flex; flex-direction: column; align-items: center; gap: 1rem;
    }
    @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
    .footer-bottom p { font-size: 0.75rem; color: hsla(var(--background) / 0.4); }

    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
      width: 3.5rem; height: 3.5rem; border-radius: 50%;
      background: hsl(var(--sage)); display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.2s; text-decoration: none;
    }
    .whatsapp-float:hover { transform: scale(1.1); }
    .whatsapp-float svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary-foreground)); }

    /* ===== TOAST ===== */
    .toast {
      position: fixed; top: 1.5rem; right: 1.5rem; z-index: 100;
      background: hsl(var(--card)); border: 1px solid hsl(var(--border));
      border-radius: var(--radius); padding: 1rem 1.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transform: translateX(120%); transition: transform 0.3s;
    }
    .toast.show { transform: translateX(0); }
    .toast h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
    .toast p { font-size: 0.8rem; color: hsl(var(--muted-foreground)); }

    /* ===== ANIMATIONS ===== */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.3fr 1fr !important;
    align-items: center;
  }
  .about-grid.image-left {
    grid-template-columns: 1fr 1.3fr !important;
  }

  /* Cómo trabajo: imagen alineada con el inicio del listado (EMDR)
     y que NO se mueva al abrir un desplegable */
  #como-trabajo .about-grid {
    align-items: start !important;
    grid-template-columns: 1.3fr 1fr !important;
  }
  #como-trabajo .about-image {
    align-self: start;
    margin-top: 14.5rem;
    top: 7rem;
  }
}
/* En móvil: imagen siempre debajo del texto */
@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr !important; }
  .about-grid .about-text  { order: 1; }
  .about-grid .about-image { order: 2; }
}
#como-trabajo .about-image {
  transform: none !important;
  transition: none !important;
}