/* ═══════════════════════════════════════════════════
   Isabel · Tarot y Sanación Espiritual — styles.css
   Images injected at runtime via script.js CSS vars
═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --linen:       #f9f5ef;
  --cream:       #fdfaf5;
  --sand:        #e8dccb;
  --sand-light:  #f2ece0;
  --sage:        #8fa68a;
  --sage-light:  #b8cdb4;
  --sage-pale:   #dde8da;
  --sage-deep:   #6b8967;
  --terracotta:  #c4916a;
  --terra-pale:  #f0ddd0;
  --plum:        #7c5c8a;
  --plum-pale:   #ede0f5;
  --plum-light:  #c9aed8;
  --text-dark:   #3a3530;
  --text-mid:    #6b6259;
  --text-soft:   #9c9189;
  --white:       #ffffff;
  --radius-sm:   4px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --transition:  all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --wa:          #25d366;
  --wa-dark:     #1da851;
  --ig:          #e1306c;
  /* Image CSS vars — set by script.js */
  --img-isabel: url('isabel.jpg');
  --img-cuenco: url('cuenco.jpg');
  --img-tarot: url('tarot.jpg');

}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.3;
  filter: blur(50px);
  pointer-events: none;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(143,166,138,0.2);
  padding: 0.9rem 6%;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--text-dark); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo .dot {
  width: 6px; height: 6px;
  background: var(--plum); border-radius: 50%; display: inline-block;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--plum); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white; text-decoration: none; font-size: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-radius 0.3s;
  flex-shrink: 0;
}
.nav-ig:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(225,48,108,0.4);
  border-radius: 12px;
}
.nav-wa {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--sage); color: white;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.3rem; text-decoration: none; border-radius: 100px;
  transition: background 0.3s, transform 0.3s; font-weight: 400;
}
.nav-wa:hover { background: var(--sage-deep); transform: translateY(-1px); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--linen);
  padding: 7rem 6% 5rem;
}
.hero-nature {
  position: absolute; right: 0; top: 0; bottom: 0; width: 48%; overflow: hidden;
}
.hero-nature::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--linen) 0%, rgba(249,245,239,0.3) 55%, transparent 100%);
  z-index: 1;
}
.hero-nature::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(180deg, transparent 0%, var(--linen) 100%);
  z-index: 1;
}
.hero-nature-inner {
  width: 100%; height: 100%;
  background: var(--img-isabel) center 15% / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.hero-nature-symbol { display: none; }

.petal {
  position: absolute; font-size: 1.2rem; opacity: 0;
  animation: floatPetal var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
  pointer-events: none; z-index: 2;
}
@keyframes floatPetal {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  20%  { opacity: 0.35; }
  80%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-120px) rotate(180deg) translateX(40px); }
}

.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--plum-pale); color: var(--plum);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem;
  animation: fadeSlide 1s ease both;
}
.hero-tag::before { content: '✦'; font-size: 0.7rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400; line-height: 1.18; color: var(--text-dark);
  margin-bottom: 1.5rem;
  animation: fadeSlide 1s 0.15s ease both;
}
.hero-title em {
  font-style: italic; color: var(--plum);
  display: block; margin-top: 0.3rem;
}
.hero-sub {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.2rem; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); max-width: 480px; margin-bottom: 3rem;
  animation: fadeSlide 1s 0.3s ease both;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlide 1s 0.45s ease both;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--wa); color: white;
  font-size: 0.88rem; letter-spacing: 0.06em;
  padding: 1rem 2rem; border-radius: 100px;
  text-decoration: none; font-weight: 400;
  transition: all 0.4s;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}
.btn-wa svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; border: 1.5px solid var(--plum-light);
  color: var(--plum); font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 1rem 1.8rem; border-radius: 100px; text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--plum-pale); border-color: var(--plum); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 3.5rem;
  animation: fadeSlide 1s 0.6s ease both;
}
.hero-stat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 400; color: var(--plum); line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-soft); margin-top: 0.2rem; display: block;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1) rotate(-5deg); opacity: 0.1; }
  50%       { transform: scale(1.06) rotate(0deg); opacity: 0.18; }
}

/* ─── DIVIDER ─── */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 0 6%; color: var(--plum-light);
  font-size: 1rem; letter-spacing: 0.3em;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--plum-pale), transparent);
}

/* ─── SECTION COMMONS ─── */
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--plum); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--plum-light);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--plum); }
.section-sub {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.1rem; line-height: 1.75; color: var(--text-mid);
}

/* ─── SOBRE MÍ ─── */
#sobre {
  padding: 7rem 6%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.sobre-visual { position: relative; }
.sobre-img-frame {
  aspect-ratio: 3/4;
  border-radius: 60% 40% 55% 45% / 55% 55% 45% 45%;
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(124,92,138,0.2), 0 4px 20px rgba(0,0,0,0.08);
}
/* Image applied via JS: .sobre-img-frame-photo */
.sobre-img-frame-photo {
  background: var(--img-isabel) center 10% / cover no-repeat;
  overflow: hidden;
}
.sobre-img-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 60%, rgba(249,245,239,0.2) 100%);
  pointer-events: none;
}
.sobre-img-symbol { display: none; }
.sobre-badge {
  position: absolute; bottom: 2.5rem; right: -1.5rem;
  background: var(--white); border: 1px solid rgba(124,92,138,0.15);
  padding: 1rem 1.5rem; border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(124,92,138,0.15), 0 2px 8px rgba(0,0,0,0.06);
  text-align: center; backdrop-filter: blur(10px); z-index: 3;
}
.sobre-badge strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--plum);
}
.sobre-badge small {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-soft);
}
.sobre-quote {
  position: absolute; top: 2.5rem; left: -1.5rem;
  background: rgba(237,224,245,0.95); padding: 1rem 1.4rem;
  border-radius: var(--radius-md); max-width: 200px;
  font-family: 'Cormorant', serif; font-style: italic; font-size: 0.88rem;
  color: var(--plum); line-height: 1.5;
  box-shadow: 0 8px 24px rgba(124,92,138,0.12);
  backdrop-filter: blur(8px); z-index: 3;
}
.sobre-body {
  font-family: 'Cormorant', serif; font-size: 1.15rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1rem; font-weight: 300;
}
.sobre-highlight {
  background: var(--plum-pale); border-left: 3px solid var(--plum);
  padding: 1.2rem 1.5rem; margin-top: 2rem;
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.1rem; color: var(--plum); line-height: 1.7;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ─── PARA QUIÉN ES ─── */
#para-quien {
  padding: 7rem 6%;
  background: var(--sand-light);
  position: relative; overflow: hidden;
}
.pq-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.pq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.pq-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); padding: 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(124,92,138,0.1);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pq-item:hover {
  border-color: var(--plum-light); transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(124,92,138,0.1);
}
.pq-dot {
  width: 8px; height: 8px; background: var(--plum);
  border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.pq-item p { font-size: 0.95rem; line-height: 1.6; color: var(--text-mid); }
.pq-visual {
  background: linear-gradient(145deg, var(--plum-pale) 0%, var(--terra-pale) 100%);
  border-radius: var(--radius-lg); padding: 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.pq-visual-icon {
  font-size: 5rem; display: block; margin-bottom: 1.5rem;
  animation: breathe 5s ease-in-out infinite;
}
.pq-visual-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.3rem; color: var(--plum); line-height: 1.5;
}
.pq-cta { margin-top: 2.5rem; }

/* ─── SERVICIOS ─── */
#servicios {
  padding: 7rem 6%;
  position: relative; overflow: hidden;
}
.servicios-header {
  text-align: center; max-width: 600px; margin: 0 auto 5rem;
}
.servicios-header .section-eyebrow { justify-content: center; }
.servicios-header .section-eyebrow::before { display: none; }
.servicios-header .section-sub { text-align: center; }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.8rem 2.5rem; position: relative; overflow: hidden;
  border: 1px solid rgba(124,92,138,0.12);
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--plum-light), var(--plum));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,92,138,0.12); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(145deg, var(--plum-pale) 0%, var(--white) 60%);
  border-color: rgba(124,92,138,0.25);
}
/* Service card photo (cuenco) */
.svc-photo {
  height: 200px;
  margin: -2.8rem -2.5rem 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.6s ease;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.svc-photo--cuenco { background-image: var(--img-cuenco); background-position: center 30%; }
.service-card:hover .svc-photo { transform: scale(1.03); }

.service-badge {
  display: inline-block; background: var(--plum); color: white;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px;
  margin-bottom: 1.5rem; align-self: flex-start;
}
.service-icon-wrap {
  width: 60px; height: 60px; background: var(--plum-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem; transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--terra-pale); }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--text-dark);
  margin-bottom: 0.8rem; line-height: 1.2;
}
.service-desc {
  font-size: 0.9rem; line-height: 1.85; color: var(--text-mid);
  flex: 1; margin-bottom: 1.5rem;
}
.service-what { margin-bottom: 1.8rem; }
.service-what-title {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--plum); font-weight: 500; margin-bottom: 0.8rem;
}
.service-features { list-style: none; }
.service-features li {
  font-size: 0.83rem; color: var(--text-mid); padding: 0.3rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5;
}
.service-features li::before {
  content: '✦'; color: var(--plum-light);
  font-size: 0.55rem; margin-top: 4px; flex-shrink: 0;
}
.service-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; border: 1.5px solid var(--sage);
  color: var(--sage-deep); font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.85rem; border-radius: 100px;
  cursor: pointer; text-decoration: none; font-weight: 400;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.service-btn:hover { background: var(--wa); border-color: var(--wa); color: white; }

/* ─── CURSO TAROT ─── */
#curso {
  padding: 7rem 6%;
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--sand-light) 60%, var(--terra-pale) 100%);
  position: relative; overflow: hidden;
}
.curso-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 6rem; align-items: start;
}
.curso-badge-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; margin-bottom: 2rem; }
.curso-badge {
  background: var(--plum); color: white;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 100px; font-weight: 400;
}
.curso-desc {
  font-family: 'Cormorant', serif; font-size: 1.15rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1rem; font-weight: 300;
}
.curso-diferencia {
  background: var(--white); padding: 1.8rem; border-radius: var(--radius-md);
  margin: 2rem 0; border-left: 3px solid var(--plum);
}
.curso-diferencia p {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.1rem; color: var(--plum); line-height: 1.7;
}
.curso-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid rgba(124,92,138,0.15);
  box-shadow: 0 8px 40px rgba(124,92,138,0.1);
  overflow: hidden;
}
/* Tarot photo in curso card */
.curso-photo {
  height: 220px;
  margin: -2.5rem -2.5rem 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background-size: cover; background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease;
}
.curso-photo--tarot { background-image: var(--img-tarot); }
.curso-card:hover .curso-photo { transform: scale(1.02); }

.curso-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400;
  color: var(--text-dark); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--sand);
}
.curso-learn { list-style: none; margin-bottom: 2rem; }
.curso-learn li {
  font-size: 0.88rem; color: var(--text-mid); padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand-light);
  display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.5;
}
.curso-learn li:last-child { border-bottom: none; }
.curso-learn li::before {
  content: '✦'; color: var(--plum);
  font-size: 0.55rem; margin-top: 5px; flex-shrink: 0;
}
.para-quien-curso {
  margin-top: 2rem;
  background: var(--plum-pale); padding: 1.5rem; border-radius: var(--radius-md);
}
.para-quien-curso h4 {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  color: var(--plum); margin-bottom: 0.8rem;
}
.para-quien-curso ul { list-style: none; }
.para-quien-curso li {
  font-size: 0.83rem; color: var(--text-mid); padding: 0.3rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.para-quien-curso li::before { content: '–'; color: var(--plum-light); flex-shrink: 0; }
.curso-cta { margin-top: 2rem; }

/* ─── TESTIMONIOS ─── */
#testimonios {
  padding: 7rem 6%;
  background: var(--linen);
  position: relative; overflow: hidden;
}
.test-header { text-align: center; margin-bottom: 4rem; }
.test-header .section-eyebrow { justify-content: center; }
.test-header .section-eyebrow::before { display: none; }
.test-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.test-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.2rem; border: 1px solid rgba(124,92,138,0.1);
  box-shadow: 0 4px 24px rgba(106,89,75,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,92,138,0.12);
  border-color: rgba(124,92,138,0.25);
}
.test-top { display: flex; align-items: center; justify-content: space-between; }
.test-avatar-wrap { display: flex; align-items: center; gap: 0.9rem; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: white; flex-shrink: 0; font-style: italic;
}
.test-author-name { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); display: block; }
.test-author-tag { font-size: 0.73rem; color: var(--text-soft); }
.test-stars { color: var(--terracotta); font-size: 0.82rem; letter-spacing: 0.08em; }
.test-quote {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.75; color: var(--text-mid);
  position: relative; padding-left: 1.2rem;
}
.test-quote::before {
  content: '"'; position: absolute; left: 0; top: -0.3rem;
  font-size: 2.5rem; color: var(--plum-light); line-height: 1;
  font-family: 'Playfair Display', serif;
}

/* ─── INSTAGRAM FEED ─── */
#instagram {
  padding: 6rem 6%;
  background: var(--sand-light);
  overflow: hidden; position: relative;
}
.ig-header { text-align: center; margin-bottom: 3.5rem; }
.ig-handle-link {
  display: inline-flex; align-items: center; gap: 0.9rem;
  text-decoration: none; margin-bottom: 0.8rem;
}
.ig-handle-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}
.ig-handle-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400; color: var(--text-dark);
}
.ig-tagline {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.05rem; color: var(--text-soft);
}
.ig-feed {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(124,92,138,0.15);
  max-width: 1000px; margin: 0 auto 3rem;
}
.ig-cell {
  position: relative; overflow: hidden;
  text-decoration: none; min-height: 200px;
  display: block; cursor: pointer;
}
.ig-cell--tall { grid-row: span 2; }
.ig-cell--quote {
  background: var(--plum-pale);
  display: flex; align-items: center; justify-content: center;
}
.ig-cell--cta {
  background: linear-gradient(135deg, #bc1888, #dc2743, #e6683c);
  display: flex; align-items: center; justify-content: center;
}
/* Photo cells get bg via CSS vars */
.ig-photo--isabel {
  background: var(--img-isabel) center 15% / cover no-repeat;
}
.ig-photo--tarot {
  background: var(--img-tarot) center / cover no-repeat;
}
.ig-photo--cuenco {
  background: var(--img-cuenco) center 30% / cover no-repeat;
}
/* Zoom on hover */
.ig-photo--isabel,
.ig-photo--tarot,
.ig-photo--cuenco {
  transition: transform 0.5s ease;
}
.ig-photo--isabel:hover,
.ig-photo--tarot:hover,
.ig-photo--cuenco:hover { transform: scale(1.04); }

.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,6,16,0.65) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem; opacity: 0; transition: opacity 0.4s ease;
}
.ig-photo--isabel:hover .ig-overlay,
.ig-photo--tarot:hover .ig-overlay,
.ig-photo--cuenco:hover .ig-overlay { opacity: 1; }
.ig-type { font-size: 1.2rem; margin-bottom: 0.3rem; }
.ig-caption {
  font-size: 0.82rem; color: white; line-height: 1.4;
  font-family: 'DM Sans', sans-serif; font-weight: 400;
}
.ig-quote-inner {
  padding: 1.8rem;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 0.8rem; height: 100%;
}
.ig-quote-inner p {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 0.95rem; line-height: 1.6; color: var(--plum);
}
.ig-cta-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 1.5rem; height: 100%; transition: transform 0.3s;
}
.ig-cell--cta:hover .ig-cta-inner { transform: scale(1.04); }
.ig-footer { text-align: center; }

/* ─── CTA NO DUDES ─── */
#no-dudes {
  padding: 8rem 6%;
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--terra-pale) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.no-dudes-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.nd-icon {
  font-size: 3rem; margin-bottom: 1.5rem; display: block;
  animation: breathe 5s ease-in-out infinite;
}
.nd-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400; color: var(--text-dark); margin-bottom: 1.2rem; line-height: 1.2;
}
.nd-title em { font-style: italic; color: var(--plum); }
.nd-sub {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1.15rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 2.5rem;
}
.nd-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.nd-note {
  font-size: 0.78rem; color: var(--text-soft); margin-top: 1.2rem; letter-spacing: 0.05em;
}

/* ─── FAQ ─── */
#faq { padding: 6rem 6%; max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--sand); padding: 1.4rem 0; cursor: pointer;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Playfair Display', serif; font-size: 1rem;
  font-weight: 400; color: var(--text-dark);
}
.faq-arrow {
  width: 28px; height: 28px; background: var(--plum-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--plum); font-size: 0.8rem;
  transition: transform 0.4s, background 0.3s; flex-shrink: 0;
  user-select: none;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--plum); color: white; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s;
  font-family: 'Cormorant', serif; font-size: 1.05rem;
  line-height: 1.8; color: var(--text-mid); font-style: italic;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 1rem; }

/* ─── FOOTER ─── */
footer { background: var(--text-dark); padding: 4rem 6% 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3rem;
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--sand-light); margin-bottom: 1rem; display: block;
}
.footer-brand p {
  font-size: 0.85rem; line-height: 1.8;
  color: rgba(232,220,203,0.55); max-width: 280px;
}
.footer-brand .phrase {
  margin-top: 1.5rem; font-family: 'Cormorant', serif; font-style: italic;
  font-size: 1rem; color: var(--plum-light);
}
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--plum-light); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul a {
  font-size: 0.85rem; color: rgba(232,220,203,0.55);
  text-decoration: none; transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--sand-light); }
.footer-social { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.footer-social-btn {
  width: 38px; height: 38px; border: 1px solid rgba(124,92,138,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s; font-size: 0.85rem;
}
.footer-social-btn.wa { color: var(--wa); }
.footer-social-btn.wa:hover { background: var(--wa); color: white; border-color: var(--wa); }
.footer-social-btn.ig { color: var(--ig); }
.footer-social-btn.ig:hover { background: var(--ig); color: white; border-color: var(--ig); }
.footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(124,92,138,0.15);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(232,220,203,0.35); }
.footer-final {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--plum-light); font-size: 0.9rem;
}

/* ─── WHATSAPP FLOAT ─── */
.float-buttons {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-end;
}
.float-wa { display: flex; align-items: center; gap: 0; transition: all 0.4s; }
.float-label {
  background: var(--white); color: var(--text-dark); font-size: 0.78rem;
  padding: 0.5rem 1rem; border-radius: 100px 0 0 100px;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateX(20px); opacity: 0; pointer-events: none;
  transition: all 0.4s;
}
.float-wa:hover .float-label { opacity: 1; transform: translateX(0); }
.wa-circle {
  width: 54px; height: 54px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.3s;
  animation: waPulse 3s ease-in-out infinite; flex-shrink: 0;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.wa-circle:hover { transform: scale(1.1); }
.wa-circle svg { width: 24px; height: 24px; fill: white; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #sobre { grid-template-columns: 1fr; gap: 4rem; }
  .pq-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .curso-inner { grid-template-columns: 1fr; gap: 3rem; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ig-feed {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ig-cell--tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-nature { display: none; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ig-feed { grid-template-columns: 1fr 1fr; }
  .sobre-quote, .sobre-badge { display: none; }
}
@media (max-width: 480px) {
  .nd-btns { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; }
  .ig-feed { grid-template-columns: 1fr; grid-template-rows: auto; }
}
