@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #ec008c; /* Magenta original del logo */
  --primary-rgb: 236, 0, 140;
  --secondary: #f39200; /* Naranja/Oro original del logo */
  --secondary-rgb: 243, 146, 0;
  --accent: #88b04b; /* Verde oliva/sabia original */
  --accent-rgb: 136, 176, 75;
  --bg: #fdfbf8;
  --bg-gradient: linear-gradient(135deg, #fdfbf8 0%, #fff2f7 100%);
  --text: #2c2523;
  --text-muted: #6e6562;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  /* Sombras y Luces */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  --shadow-md: 0 8px 16px -3px rgba(0, 0, 0, 0.03), 0 3px 6px -2px rgba(0, 0, 0, 0.01);
  --shadow-lg: 0 16px 24px -5px rgba(236, 0, 140, 0.05), 0 8px 12px -5px rgba(243, 146, 0, 0.02);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text);
}

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

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

/* --- DECORACIONES CELESTIALES FLOTANTES --- */
.celestial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.star {
  position: absolute;
  color: rgba(243, 146, 0, 0.18);
  font-size: 20px;
  user-select: none;
  animation: pulseStar 4s infinite alternate ease-in-out;
}

.star-1 { top: 8%; left: 8%; animation-delay: 0s; }
.star-2 { top: 18%; right: 10%; animation-delay: 1.2s; }
.star-3 { top: 55%; left: 5%; animation-delay: 2.4s; }
.star-4 { top: 78%; right: 6%; animation-delay: 3.6s; }

@keyframes pulseStar {
  0% { transform: scale(0.8) rotate(0deg); opacity: 0.2; }
  100% { transform: scale(1.2) rotate(15deg); opacity: 0.7; }
}

/* --- ANIMACIÓN SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- CABECERA Y NAVEGACIÓN --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 10px 0;
}

.navbar .nav-link,
.navbar .nav-logo-text {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 3px 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-logo-text {
  color: var(--text-muted);
}

.navbar.scrolled .nav-toggle span {
  background-color: var(--text);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #ff4fa8 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 4px 12px rgba(236, 0, 140, 0.2);
  border: none;
  cursor: pointer;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(236, 0, 140, 0.3);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: rgba(255,255,255,0.9);
  margin: 4px 0;
  transition: var(--transition);
}

/* --- HERO SECTION (CINEMATOGRÁFICO) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('/preview/canca-terapias/preview/canca-terapias/assets/hero_cinematic.png');
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.08); /* Compensar bordes del blur */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(35, 20, 18, 0.55) 0%,
    rgba(45, 25, 30, 0.65) 40%,
    rgba(60, 20, 40, 0.72) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 110px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap {
  margin-bottom: 28px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  padding: 8px;
  box-shadow: 0 8px 32px rgba(236, 0, 140, 0.2), 0 0 60px rgba(243, 146, 0, 0.1);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.2);
}

.hero .hero-title {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
  color: #fff;
}

.hero .hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #f9a8d2; /* Rosa claro sobre fondo oscuro */
}

.hero .hero-description {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn-secondary {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.45);
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* --- SOBRE NOSOTROS (SECCIÓN COMPACTA) --- */
.section {
  padding: 50px 24px; /* Margen drásticamente reducido en general */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px; /* Margen reducido */
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* Más equilibrado */
  gap: 40px;
  align-items: center;
}

.about-visual {
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
}

.about-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  transition: var(--transition);
}

.about-visual:hover .about-img {
  transform: scale(1.05);
}

.about-card-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card-badge span {
  font-size: 22px;
}

.about-info h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.about-info p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
}

.identity-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.01);
}

.pill-pink { border-left: 3px solid var(--primary); color: #c00071; }
.pill-gold { border-left: 3px solid var(--secondary); color: #bc7000; }
.pill-green { border-left: 3px solid var(--accent); color: #618032; }

/* --- SECCIÓN DE TERAPIAS (TARJETAS TIPO GRILLA) --- */
.therapies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; /* Margen compacto entre tarjetas */
}

.therapy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Glows personalizados por terapia */
.therapy-card[data-therapy="tarot"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(243, 146, 0, 0.12);
  border-color: rgba(243, 146, 0, 0.15);
}

.therapy-card[data-therapy="reiki"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(236, 0, 140, 0.12);
  border-color: rgba(236, 0, 140, 0.15);
}

.therapy-card[data-therapy="magnetoterapia"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(136, 176, 75, 0.12);
  border-color: rgba(136, 176, 75, 0.15);
}

.therapy-card[data-therapy="auriculoterapia"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.15);
}

.therapy-img-wrapper {
  position: relative;
  height: 170px;
  overflow: hidden;
  background-color: #f2ebe8;
}

.therapy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.therapy-card:hover .therapy-img {
  transform: scale(1.06);
}

.therapy-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.therapy-info {
  padding: 16px; /* Padding ajustado a 16px */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.therapy-title {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 700;
}

.therapy-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.5;
}

.therapy-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f6f0ee;
  padding-top: 12px;
  margin-top: auto;
}

.therapy-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.btn-card-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 0;
}

.btn-card-cta:hover {
  color: var(--secondary);
}

/* --- SECCIÓN INTERACTIVA: CHAKRAS CON SILUETA --- */
.chakras-section {
  background-color: var(--white);
}

.chakras-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.chakra-map-container {
  display: flex;
  justify-content: center;
  position: relative;
  background: #faf8f4;
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm) inset;
  height: 290px; /* Mucho más compacto */
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.01);
}

.chakra-silhouette {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 88%; /* Ajustado */
  width: auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.chakra-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 80%;
  background: linear-gradient(to bottom, #9b5de5 0%, #00b4d8 35%, #06d6a0 50%, #ffd166 65%, #f77f00 80%, #ef233c 100%);
  z-index: 1;
  border-radius: 50px;
  opacity: 0.35;
  top: 10%;
}

.chakra-nodes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
  align-items: center;
  padding: 5px 0; /* Padding compacto */
}

.chakra-node {
  width: 24px; /* Nodo más pequeño */
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 10px; /* Texto más pequeño */
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid var(--white);
}

.chakra-node::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-inherit: inherit;
  opacity: 0.4;
  z-index: -1;
  animation: pulseNode 2.2s infinite;
}

.chakra-node:hover, .chakra-node.active {
  transform: scale(1.25);
  box-shadow: 0 0 20px var(--chakra-color);
  z-index: 10;
}

.chakra-node span {
  display: none;
}

/* Colores específicos de cada chakra */
.c7 { --chakra-color: #9b5de5; background-color: #9b5de5; }
.c6 { --chakra-color: #560bad; background-color: #560bad; }
.c5 { --chakra-color: #00b4d8; background-color: #00b4d8; }
.c4 { --chakra-color: #06d6a0; background-color: #06d6a0; }
.c3 { --chakra-color: #ffd166; background-color: #ffd166; color: #222; }
.c2 { --chakra-color: #f77f00; background-color: #f77f00; }
.c1 { --chakra-color: #ef233c; background-color: #ef233c; }

.chakra-info-panel {
  background: #fdfcf8;
  padding: 20px; /* Padding reducido */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  min-height: 180px; /* Altura compacta */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chakra-info-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.chakra-info-color-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--chakra-color, var(--primary));
  box-shadow: 0 0 10px var(--chakra-color, var(--primary));
  transition: var(--transition);
}

.chakra-info-title {
  font-size: 24px;
}

.chakra-sanskrit {
  font-style: italic;
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 6px;
}

.chakra-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  flex-wrap: wrap;
}

.chakra-meta span {
  background: rgba(236, 0, 140, 0.04);
  padding: 4px 10px;
  border-radius: 50px;
}

.chakra-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- SECCIÓN DE CONTACTO Y RESERVAS (MÁS COMPACTA) --- */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: #faf8f5;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.01);
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 22px;
  color: var(--primary);
  background: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.booking-form-wrapper {
  background: #fdfcf8;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(236, 0, 140, 0.03);
}

.booking-form h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.booking-form-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.06);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6562' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
}

textarea.form-control {
  resize: vertical;
  min-height: 95px;
}

.btn-form-submit {
  width: 100%;
  background: #25d366;
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  margin-top: 8px;
}

.btn-form-submit:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* --- PIE DE PÁGINA --- */
.footer {
  background-image: linear-gradient(to bottom, #fdfbf8 0%, #f4eae0 100%);
  padding: 40px 24px 20px; /* Margen reducido */
  border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
}

.footer-slogan {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 400px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-size: 18px;
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(236, 0, 140, 0.12);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.04);
  margin: 8px 0;
}

.footer-copyright {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* --- WHATSAPP FLOTANTE --- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  animation: pulseSlow 3s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.08) rotate(5deg);
  color: var(--white);
}

/* --- ANIMACIONES --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { opacity: 0.3; transform: scale(0.96); }
  100% { opacity: 0.8; transform: scale(1.04); }
}

@keyframes pulseSlow {
  0% { transform: scale(1); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2); }
  50% { transform: scale(1.04); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  100% { transform: scale(1); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2); }
}

@keyframes pulseNode {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- AJUSTES DE DISEÑO RESPONSIVE Y MÓVIL ULTRA-OPTIMIZADO --- */
@media (max-width: 992px) {
  .hero .hero-title {
    font-size: 40px;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .chakras-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* --- MÓVIL: APROVECHAMIENTO DEL ANCHO --- */
  .section {
    padding: 35px 12px; /* Márgenes sumamente compactos de 12px a los lados */
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-inner {
    padding: 100px 16px 50px;
  }

  .hero .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero .hero-description {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }

  .hero-chip {
    font-size: 11.5px;
    padding: 5px 12px;
  }

  /* Menú desplegable para móviles */
  .nav-menu {
    position: fixed;
    top: 66px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 66px);
    background: var(--white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: 0 12px 24px rgba(0,0,0,0.04);
    align-items: center;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* Tarjetas de terapia compactas en móvil */
  .therapies-grid {
    grid-template-columns: 1fr;
    gap: 12px; /* Muy estrecho en móvil */
  }

  .therapy-card {
    border-radius: var(--radius-md);
    margin: 0;
  }

  .therapy-img-wrapper {
    height: 160px;
  }

  .therapy-info {
    padding: 14px;
  }

  .therapy-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .therapy-desc {
    font-size: 13px;
    margin-bottom: 12px;
  }

  /* Panel de información de chakras */
  .chakra-info-panel {
    padding: 16px;
    margin: 0;
    width: 100%;
  }

  .chakra-map-container {
    padding: 15px 10px;
    height: 360px;
  }

  .chakra-nodes {
    padding: 5px 0;
  }

  .chakra-node {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

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

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 30px 8px;
  }

  .hero .hero-title {
    font-size: 28px;
  }

  .hero-inner {
    padding: 90px 12px 40px;
  }

  .hero-logo {
    width: 70px;
    height: 70px;
  }

  .hero-chips {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
