/* ============================================
   AmbArt Candles — Estilos compartidos
   ============================================ */

:root {
  --pink: #F4A7B5;
  --pink-soft: #F9C8D1;
  --pink-pale: #FDE8EE;
  --pink-hero: #F8D4DC;
  --cream: #FFFBFC;
  --rose: #C06478;
  --rose-dark: #A84F64;
  --rose-light: #E8909F;
  --rose-pale: #F9E0E5;
  --gold: #C9975A;
  --gold-light: #E8C48A;
  --gold-pale: #F5E6C8;
  --text: #2A1520;
  --text-soft: #6B4555;
  --text-mute: #9A7585;
  --shadow-sm: 0 4px 14px rgba(192, 100, 120, 0.08);
  --shadow-md: 0 10px 30px rgba(192, 100, 120, 0.10);
  --shadow-lg: 0 20px 50px rgba(192, 100, 120, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--pink-pale);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Tipografía
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}

.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

/* ============================================
   Logo imagen
   ============================================ */

.hero-logo {
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
  mix-blend-mode: multiply;
}

.footer-logo {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
  filter: invert(1);
}

.confirm-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 28px;
  mix-blend-mode: multiply;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 24px;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 251, 252, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  box-shadow: 0 4px 30px rgba(192, 100, 120, 0.10);
  border-bottom: 1px solid rgba(192, 100, 120, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--rose-dark);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav-brand:hover {
  color: var(--rose);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.3s cubic-bezier(.2,.8,.2,1);
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

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

.nav-cta:hover {
  background: var(--rose-dark) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192, 100, 120, 0.35);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Barra de confianza
   ============================================ */

.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(192, 100, 120, 0.15);
  border-radius: 50px;
  padding: 12px 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--rose);
  flex-shrink: 0;
}

.trust-sep {
  color: var(--pink);
  font-size: 16px;
  line-height: 1;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 120px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 167, 181, 0.50) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(192, 100, 120, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #F8D4DC 0%, var(--pink-pale) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(201, 151, 90, 0.15) 0, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255, 182, 193, 0.3) 0, transparent 2px);
  background-size: 120px 120px, 180px 180px, 90px 90px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 24px 0 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-dark);
}

.hero p.subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 300;
}

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

/* ============================================
   Botones
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(192, 100, 120, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 100, 120, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1.5px solid var(--pink);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebd5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn-large {
  padding: 20px 44px;
  font-size: 16px;
}

/* ============================================
   Secciones
   ============================================ */

section {
  padding: 100px 24px;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 16px;
  font-weight: 300;
  color: var(--text);
}

.section-head h2 em {
  font-style: italic;
  color: var(--rose);
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px auto;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
}

.divider-ornament span {
  color: var(--rose-light);
  font-size: 1.1rem;
}

/* ============================================
   ¿Para quién es?
   ============================================ */

.for-whom {
  background: white;
  padding: 100px 24px 80px;
}

.whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.whom-card {
  background: var(--cream);
  border: 1px solid rgba(192, 100, 120, 0.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}

.whom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
}

.whom-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1;
}

.whom-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.whom-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================
   Cursos — Tarjetas
   ============================================ */

.courses {
  background: linear-gradient(180deg, white 0%, var(--pink-pale) 100%);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.course-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
  border: 1px solid rgba(192, 100, 120, 0.12);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-card.featured {
  background: linear-gradient(180deg, #fff5f7 0%, #fde8ee 100%);
  border: 2px solid var(--rose);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(192, 100, 120, 0.22);
}

.course-card.featured:hover {
  transform: translateY(-8px) scale(1.03);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: white;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(192, 100, 120, 0.45);
  white-space: nowrap;
}

.course-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.course-subtitle {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 20px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--pink-soft);
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}

.price-old {
  font-size: 1.3rem;
  color: var(--text-mute);
  text-decoration: line-through;
  font-weight: 300;
}

.price-currency {
  font-size: 0.9rem;
  color: var(--text-soft);
  letter-spacing: 0.15em;
  font-weight: 500;
}

.course-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.course-features li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
  border-bottom: 1px dashed rgba(201, 151, 90, 0.15);
}

.course-features li:last-child {
  border-bottom: none;
}

.course-features li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  top: 9px;
  color: var(--gold);
  font-size: 12px;
}

.course-features li.tech::before {
  content: none;
}

.course-features li.tech {
  padding-left: 8px;
  font-size: 15.5px;
  color: var(--text);
  font-weight: 400;
}

/* Collapsible list */
.course-features li.collapsible-hidden {
  display: none;
}

.course-card.expanded .course-features li.collapsible-hidden {
  display: list-item;
  animation: fadeSlideIn 0.4s cubic-bezier(.2,.8,.2,1) both;
}

.toggle-features {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.05em;
  padding: 8px 0;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.toggle-features:hover {
  color: var(--rose-dark);
}

.toggle-features .show-less {
  display: none;
}

.course-card.expanded .toggle-features .show-more {
  display: none;
}

.course-card.expanded .toggle-features .show-less {
  display: inline;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.course-card .btn {
  width: 100%;
}

.payment-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ============================================
   Galería de velas
   ============================================ */

.gallery {
  background: var(--pink-pale);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s;
  background: var(--pink-pale);
  border: 1px solid rgba(192, 100, 120, 0.10);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(42, 21, 32, 0.7) 0%, transparent 100%);
  padding: 40px 20px 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ============================================
   Testimonios
   ============================================ */

.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  background: white;
  padding: 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(192, 100, 120, 0.08);
}

.testimonial-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}

.testimonial-item img {
  width: 100%;
  border-radius: var(--radius-sm);
  height: auto;
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   Sobre mí
   ============================================ */

.about {
  background: linear-gradient(180deg, var(--pink-pale) 0%, white 100%);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--pink-pale);
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.5;
  transform: translate(14px, 14px);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin: 14px 0 24px;
}

.about-content h2 em {
  font-style: italic;
  color: var(--rose);
}

.about-content p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-content .signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--rose);
  margin: 24px 0 32px;
}

.tiktok-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--pink-soft);
  border-bottom: 1px solid var(--pink-soft);
}

.tiktok-stats .stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--rose);
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.tiktok-stats .stat span {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: white;
  padding: 100px 24px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(192, 100, 120, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--cream);
  transition: all 0.35s;
}

.faq-item:hover {
  border-color: var(--pink);
}

.faq-item[open] {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--rose);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.35s;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--rose);
}

.faq-answer {
  padding: 0 28px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  animation: fadeSlideIn 0.35s ease both;
}

/* ============================================
   Calendario / Reserva
   ============================================ */

.booking {
  background: var(--pink-pale);
}

.booking-frame {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(192, 100, 120, 0.15);
  padding: 14px;
}

.booking-frame iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: var(--radius-md);
  display: block;
}

/* Vista previa bloqueada del calendario en la página principal */
.booking-frame-locked {
  position: relative;
}

.booking-frame-locked iframe {
  pointer-events: none;
  user-select: none;
}

.booking-lock {
  position: absolute;
  inset: 14px;
  border-radius: var(--radius-md);
  background: rgba(253, 232, 238, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: not-allowed;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 22px;
  z-index: 2;
}

.booking-lock-msg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-soft);
  backdrop-filter: blur(6px);
}

.booking-lock-msg svg {
  color: var(--rose);
  flex-shrink: 0;
}

/* Variantes de grid (galería y testimonios reducidos) */
.gallery-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  align-items: start;
}

.testimonials-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1000px;
}

@media (max-width: 720px) {
  .testimonials-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .gallery-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.booking-cta {
  text-align: center;
  margin-top: 40px;
}

.booking-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-mute);
  font-style: italic;
}

/* ============================================
   Garantía
   ============================================ */

.guarantee {
  background: linear-gradient(180deg, white 0%, var(--pink-pale) 100%);
  padding: 80px 24px;
}

.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border: 1px solid rgba(192, 100, 120, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--pink-pale), var(--rose-pale));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  color: var(--rose);
}

.guarantee-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.guarantee-inner p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: var(--rose-dark);
  color: #FFE4EC;
  text-align: center;
  padding: 56px 24px 40px;
  font-size: 14px;
}

.footer-logo-wrap {
  margin: 0 auto 20px;
}

.footer-logo-wrap img {
  height: 72px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 228, 236, 0.80);
  margin-bottom: 20px;
}

footer .socials {
  margin: 16px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

footer a {
  color: var(--pink-soft);
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-dot {
  color: rgba(255, 228, 236, 0.35);
}

footer .copy {
  color: rgba(255, 228, 236, 0.40);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255, 228, 236, 0.10);
  padding-top: 20px;
  margin-top: 8px;
}

/* ============================================
   WhatsApp flotante
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float .tooltip {
  background: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-pulse 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================
   Animaciones al hacer scroll
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================
   Páginas de confirmación
   ============================================ */

/* Logo en páginas de confirmación */
.confirm-logo-wrap {
  margin: 0 auto 28px;
}

.confirm-logo-wrap img {
  height: 80px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.confirm-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(192, 100, 120, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, #F8D4DC 0%, var(--pink-pale) 100%);
  padding: 40px 24px 80px;
}

.confirm-wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.confirm-icon {
  width: 110px;
  height: 110px;
  margin: 24px auto 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: pop-in 0.6s cubic-bezier(.2,1.4,.4,1) both;
}

.confirm-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  opacity: 0.35;
  animation: ring-pulse 2.2s ease-out infinite;
}

.confirm-icon svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
}

@keyframes pop-in {
  0%   { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes ring-pulse {
  0%   { transform: scale(1);   opacity: 0.45; }
  100% { transform: scale(1.35); opacity: 0; }
}

.confirm-wrap h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 20px;
}

.confirm-wrap h1 em {
  font-style: italic;
  color: var(--rose);
}

.confirm-wrap p.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 960px) {
  .whom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  section { padding: 72px 20px; }

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

  .about-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .course-card.featured {
    transform: none;
  }

  .course-card.featured:hover {
    transform: translateY(-8px);
  }

  /* Navbar mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 251, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    align-items: flex-start;
    transition: right 0.4s cubic-bezier(.2,.8,.2,1);
    box-shadow: -10px 0 40px rgba(42, 21, 32, 0.10);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .nav-cta {
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .site-header img { height: 60px; }

  section { padding: 64px 18px; }

  .course-card { padding: 36px 24px; }

  .whom-grid {
    grid-template-columns: 1fr;
  }

  .whom-card {
    padding: 28px 22px;
  }

  .whatsapp-float .tooltip { display: none; }
  .whatsapp-float { bottom: 18px; right: 18px; }
  .whatsapp-btn { width: 54px; height: 54px; }
  .whatsapp-btn svg { width: 28px; height: 28px; }

  .tiktok-stats { flex-wrap: wrap; gap: 20px; }

  .booking-frame iframe { min-height: 620px; }

  .guarantee-inner {
    padding: 36px 24px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
  }
}
