:root {
  --primary: #D38BB9;          /* Rosa elegante, más profundo y premium */
  --primary-light: #F0B2DE;    /* Rosa suave */
  --primary-dark: #2F6764;     /* Verde azulado oscuro para títulos y contraste */
  --accent: #D5F1F1;           /* Teal claro */
  --accent-light: #F7FFFD;     /* Blanco verdoso muy limpio */
  --rose-light: #FFECFB;       /* Fondo rosado delicado */
  --rose-soft: #F7DFF3;        /* Rosa pastel más refinado */
  --bg-main: #FFFDFE;          /* Fondo base casi blanco */
  --bg-card: #ffffff;
  --bg-alt: #F1F1F3;           /* Fondo alternativo muy suave */
  --text-main: #2F1F2A;
  --text-muted: #56464D;
  --text-light: #6A5C63;
  --border-subtle: #EBD4E4;
  --badge-bg: #FFF3FE;
  --badge-text: #5D3B58;
  --shadow-sm: 0 2px 8px rgba(211, 139, 185, 0.08);
  --shadow-md: 0 8px 20px rgba(47, 103, 100, 0.12);
  --shadow-lg: 0 16px 34px rgba(47, 103, 100, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Top Bar --- */
.top-notice-bar {
  background-color: var(--primary-dark);
  color: #fde8ed;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-notice-bar a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(211, 139, 185, 0.16);
  z-index: 1000;
  transition: var(--transition);
}

.site-header .container {
  max-width: 1320px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  min-width: 0;
  margin-right: 2.5rem; /* Espacio generoso para que no quede pegado a Inicio */
}

.logo-wrap img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-text .title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  white-space: nowrap;
}

.logo-text .subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
  flex-wrap: nowrap; /* Evita que los items caigan en otra fila */
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  position: relative;
  white-space: nowrap; /* CRUCIAL: los enlaces nunca se parten en 2 líneas */
  padding: 0.35rem 0.2rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.75rem;
  padding-left: 1.5rem;
  border-left: 1.5px solid var(--border-subtle);
  flex-shrink: 0;
}

.nav-actions .btn-whatsapp {
  white-space: nowrap;
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(201, 93, 115, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 93, 115, 0.4);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1eb957;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, #F9FFFE 0%, #FFF4FC 45%, #EEF8F8 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-pill svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-card {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.card-therapist {
  text-align: center;
}

.card-therapist .avatar-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.card-therapist .avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapist-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.therapist-tag {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  background: var(--rose-light);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  border: 1px solid var(--border-subtle);
}

.card-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.card-badge-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --- Section Global --- */
.section {
  padding: 4rem 0;
}

#cuestionario {
  background: linear-gradient(180deg, rgba(255, 236, 251, 0.7) 0%, rgba(255, 255, 255, 0.92) 100%);
  border-top: 1px solid rgba(211, 139, 185, 0.14);
  border-bottom: 1px solid rgba(211, 139, 185, 0.14);
}

#valores {
  background: var(--bg-alt);
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-box {
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.highlight-box h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.highlight-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Services / Áreas Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--rose-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-subtle);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  flex-grow: 1;
}

/* --- Workshops / Talleres --- */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.workshop-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.workshop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
}

.workshop-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: var(--badge-bg);
  color: var(--badge-text);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.workshop-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.workshop-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.workshop-bullets {
  border-top: 1px dashed var(--border-subtle);
  padding-top: 1rem;
}

.workshop-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.workshop-bullets li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --- Modalities & Coverage --- */
.modality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.modality-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.modality-box.featured {
  border: 2px solid var(--primary);
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fa 100%);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modality-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--border-subtle);
}

.modality-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.modality-zones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.zone-chip {
  background: var(--rose-light);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

/* --- Pricing / Valores --- */
.pricing-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.pricing-header .price-amount {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0.5rem 0;
}

.pricing-header .price-period {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--rose-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
}

.pricing-features li svg {
  color: var(--primary);
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-col h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--rose-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.contact-item-details h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.contact-item-details a, .contact-item-details p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.contact-form-wrap {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fdfdfd;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 93, 115, 0.18);
  background: #ffffff;
}

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

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(135deg, #2F6764 0%, #3B6C6B 100%);
  color: #F7FFFD;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #f7cfcf;
  font-size: 0.9rem;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #fbdde2;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #f7cfcf;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .nav-menu {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
    padding-left: 0;
    border-left: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mobile-toggle {
    display: block;
  }

  .nav-actions .btn-whatsapp {
    display: none;
  }

  .logo-wrap {
    max-width: calc(100% - 72px);
    margin-right: 0;
  }

  .logo-text .title {
    white-space: normal;
    line-height: 1.15;
    font-size: 0.95rem;
  }

  .logo-text .subtitle {
    white-space: normal;
    letter-spacing: 0.04em;
    font-size: 0.62rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    position: relative;
    padding-right: 0.5rem;
    gap: 0.75rem;
  }

  .logo-wrap {
    max-width: calc(100% - 52px);
    gap: 0.5rem;
  }

  .logo-wrap img {
    height: 38px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }
  .pricing-features, .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2rem;
  }
}
