/* ══════════════════════════════════════════════════════════════
   Daniela Lopez Academy — Home Page Styles
   ══════════════════════════════════════════════════════════════ */

@keyframes h2FadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes h2WordUp {
  from { opacity:0; transform:translateY(110%); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.h2-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #080f0e 0%, #0f2220 40%, #1C3330 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Atmospheric blobs */
.h2-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.h2-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(189,154,150,0.09) 0%, transparent 70%);
  top: -250px; right: -150px;
  filter: blur(60px);
  animation: blobDrift1 22s ease-in-out infinite;
}
.h2-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,76,71,0.5) 0%, transparent 70%);
  top: 30%; left: -120px;
  filter: blur(80px);
  animation: blobDrift2 18s ease-in-out infinite;
}
.h2-blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(218,203,189,0.04) 0%, transparent 70%);
  bottom: -100px; left: 35%;
  filter: blur(60px);
  animation: blobDrift3 28s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-50px,40px) scale(1.1); }
  66%     { transform: translate(30px,-60px) scale(0.92); }
}
@keyframes blobDrift2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(40px,-80px) scale(1.12); }
}
@keyframes blobDrift3 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-60px,-40px); }
}

/* Grain texture */
.h2-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C%2Ffilter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C%2Fsvg%3E");
  background-size: 200px 200px;
}

/* Hero wrapper */
.h2-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 48px 80px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left */
.h2-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.h2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a9a5;
  margin-bottom: 28px;
  opacity: 0;
  animation: h2FadeUp 0.6s ease 0.1s forwards;
}
.h2-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #BD9A96;
  flex-shrink: 0;
}

/* Title */
.h2-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}
.h2-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.h2-w {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: h2WordUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
.h2-title em     { color: #c9a9a5; font-style: italic; }
.h2-title strong { color: #fff; font-weight: 900; }

/* Subtitle */
.h2-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0;
  animation: h2FadeUp 0.6s ease var(--d) forwards;
}

/* Buttons */
.h2-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: h2FadeUp 0.6s ease var(--d) forwards;
}
.h2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #BD9A96;
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(189,154,150,0.35);
}
.h2-btn-primary:hover {
  background: #a58580;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(189,154,150,0.5);
}
.h2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.93rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
  backdrop-filter: blur(8px);
}
.h2-btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Stats */
.h2-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: h2FadeUp 0.6s ease var(--d) forwards;
}
.h2-stat { text-align: center; }
.h2-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.h2-stat-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.h2-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Right */
.h2-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
}

/* Halo */
.h2-halo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,154,150,0.22) 0%, transparent 65%);
  filter: blur(40px);
  animation: h2HaloPulse 4s ease-in-out infinite;
}
@keyframes h2HaloPulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity:.75; }
  50%     { transform: translateX(-50%) scale(1.15); opacity:1; }
}

/* Ring 1 */
.h2-ring {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(189,154,150,0.18);
  animation: h2RingRotate 25s linear infinite;
}
.h2-ring::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #BD9A96;
  box-shadow: 0 0 12px rgba(189,154,150,0.8);
}
@keyframes h2RingRotate {
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Ring 2 */
.h2-ring2 {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(218,203,189,0.08);
  animation: h2RingRotate 40s linear infinite reverse;
}

/* Photo */
.h2-photo {
  position: relative;
  z-index: 2;
  width: clamp(280px, 34vw, 480px);
  max-height: 85vh;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 0 60px rgba(189,154,150,0.18)) drop-shadow(0 40px 80px rgba(0,0,0,0.5));
  animation: h2PhotoEnter 1.1s cubic-bezier(0.34, 1.3, 0.64, 1) 0.25s both;
}
@keyframes h2PhotoEnter {
  from { transform: translateY(70px) scale(0.95); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}

/* Floating badges */
.h2-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 14px;
  background: rgba(8,18,16,0.72);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.07);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  animation: h2BadgeFloat 3.5s ease-in-out infinite;
}
.h2-badge-1 { left: -10px; bottom: 42%; animation-delay: 0s; }
.h2-badge-2 { right: -10px; bottom: 62%; animation-delay: 1.2s; }
.h2-badge-3 { left: 5px; bottom: 20%; animation-delay: 2.2s; }
@keyframes h2BadgeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.h2-badge-icon { font-size: 1.5rem; line-height: 1; }
.h2-badge strong { display: block; font-size: 0.88rem; font-weight: 700; }
.h2-badge span   { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 1px; }

/* Scroll indicator */
.h2-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: h2FadeUp 1s ease 1.3s both;
}
.h2-scroll-line {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  border-radius: 1px;
}
.h2-scroll-dot {
  position: absolute; inset-inline: 0; height: 40%;
  background: rgba(255,255,255,0.5);
  border-radius: 1px;
  animation: h2ScrollDot 1.6s ease-in-out infinite;
}
@keyframes h2ScrollDot {
  from { top: -40%; } to { top: 100%; }
}

/* Cursor glow */
#cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    700px at var(--cx, -999px) var(--cy, -999px),
    rgba(189,154,150,0.05),
    transparent 80%
  );
  transition: background 0.1s;
}

/* ── TICKER ───────────────────────────────────────────────────── */
.h2-ticker {
  overflow: hidden;
  padding: 14px 0;
  background: var(--beige-light, #f0e9e2);
  border-top: 1px solid var(--beige, #DACBBD);
  border-bottom: 1px solid var(--beige, #DACBBD);
}
.h2-ticker-track {
  display: flex;
  width: max-content;
  animation: h2TickerScroll 40s linear infinite;
}
.h2-ticker-reverse { background: var(--cream, #F8F4F0); }
.h2-ticker-reverse .h2-ticker-track { animation-direction: reverse; }
@keyframes h2TickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.h2-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--verde-dark, #1C3330);
  letter-spacing: 0.5px;
}
.h2-ticker-item-alt { color: var(--verde, #2D4C47); }
.h2-ticker-dot { font-size: 0.45rem; color: #BD9A96; flex-shrink: 0; }

/* ── CARDS ────────────────────────────────────────────────────── */
.h2-card {
  transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.3s ease;
}
.h2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(45,76,71,0.12), 0 4px 20px rgba(189,154,150,0.1);
}

/* ── PROMO BAND (countdown section) ──────────────────────────── */
.promo-band {
  position: relative;
  background: linear-gradient(135deg, var(--verde-dark, #1C3330) 0%, var(--verde, #2D4C47) 100%);
  padding-block: var(--space-3xl, 80px);
  overflow: hidden;
}
.promo-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(189,154,150,0.08) 0%, transparent 65%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .promo-band .section-inner { grid-template-columns: 1fr !important; gap: var(--space-xl) !important; text-align: center; }
}

/* ── COUNTDOWN ────────────────────────────────────────────────── */
.h2-countdown-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 20px 10px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.h2-countdown-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.h2-countdown-lbl {
  font-size: 0.68rem;
  color: #c9a9a5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── CATEGORÍAS ───────────────────────────────────────────────── */
.h2-cats-section { background: var(--verde-dark, #1C3330); }

.h2-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
}
.h2-cat-card:hover {
  background: rgba(189,154,150,0.1);
  border-color: rgba(189,154,150,0.35);
  transform: translateY(-8px);
}
.h2-cat-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(189,154,150,0.15) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.h2-cat-card:hover .h2-cat-glow { opacity: 1; }
.h2-cat-icon { font-size: 2.8rem; transition: transform 0.35s cubic-bezier(0.34,1.6,0.64,1); }
.h2-cat-card:hover .h2-cat-icon { transform: scale(1.22) translateY(-3px); }
.h2-cat-name  { font-size: 1rem; font-weight: 600; color: #fff; margin: 0; }
.h2-cat-count { font-size: 0.75rem; color: #c9a9a5; margin: 0; }
.h2-cat-arrow { font-size: 0.9rem; color: rgba(189,154,150,0.5); margin-top: 4px; transition: transform 0.2s, color 0.2s; }
.h2-cat-card:hover .h2-cat-arrow { transform: translateX(4px); color: #BD9A96; }

/* ── SOBRE DANIELA ────────────────────────────────────────────── */
.h2-about-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige, #DACBBD);
  box-shadow: 0 32px 80px rgba(45,76,71,0.15);
}
.h2-about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.h2-about-photo-wrap:hover img { transform: scale(1.03); }

.h2-about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(28,51,48,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  color: #fff;
}
.h2-about-badge strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.h2-about-badge span   { font-size: 0.7rem; color: rgba(255,255,255,0.55); letter-spacing: 1px; }

.h2-about-stats { display: flex; gap: 28px; padding: 24px 0; border-top: 1px solid var(--beige, #DACBBD); }
.h2-about-stat  { text-align: center; flex: 1; }
.h2-about-stat strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--verde-dark, #1C3330); line-height: 1; }
.h2-about-stat span   { font-size: 0.72rem; color: var(--text-muted, #888); letter-spacing: 0.5px; margin-top: 4px; display: block; }

/* ── TESTIMONIOS ──────────────────────────────────────────────── */
.h2-testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(45,76,71,0.07);
  border: 1px solid rgba(218,203,189,0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.3s ease;
}
.h2-testimonial:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(45,76,71,0.12); }
.h2-testimonial--inv { background: var(--verde, #2D4C47); border-color: transparent; }
.h2-testimonial--inv .h2-t-text,
.h2-testimonial--inv .h2-t-name { color: #fff; }
.h2-testimonial--inv .h2-t-meta  { color: #c9a9a5; }
.h2-testimonial--inv .h2-t-avatar { background: rgba(255,255,255,0.12); color: #fff; }

.h2-t-stars  { color: #f5c04c; font-size: 1rem; letter-spacing: 2px; }
.h2-t-text   { font-family: var(--font-display); font-size: 1.08rem; font-style: italic; line-height: 1.75; color: var(--text-dark, #0d1f1c); flex: 1; }
.h2-t-author { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.h2-t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--beige, #DACBBD); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: var(--verde-dark, #1C3330); flex-shrink: 0; }
.h2-t-name { font-weight: 700; font-size: 0.93rem; color: var(--text-dark, #0d1f1c); margin: 0; }
.h2-t-meta { font-size: 0.72rem; color: var(--text-muted, #888); margin: 0; }

/* ── CTA FINAL ────────────────────────────────────────────────── */
.h2-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--verde, #2D4C47);
  padding-block: var(--space-3xl, 80px);
}
.h2-cta-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,154,150,0.12) 0%, transparent 65%);
  top: -200px; right: -150px;
  filter: blur(60px);
  animation: blobDrift1 20s ease-in-out infinite;
  pointer-events: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .h2-wrap { grid-template-columns: 1fr; padding: 120px 32px 60px; text-align: center; }
  .h2-right { display: none; }
  .h2-eyebrow { justify-content: center; }
  .h2-title { font-size: clamp(3rem, 10vw, 5rem); }
  .h2-sub { margin-inline: auto; }
  .h2-btns { justify-content: center; }
  .h2-stats { justify-content: center; }
  .h2-about-stats { gap: 16px; }
}
@media (max-width: 700px) {
  .h2-wrap { padding: 110px 20px 48px; }
  .h2-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .h2-btns { flex-direction: column; align-items: center; }
  .h2-stats { gap: 20px; }
  .h2-stat-num { font-size: 2rem; }
  .h2-about-stats { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════════
   SECCIÓN NOSOTROS
   ══════════════════════════════════════════════════════════════ */

@keyframes nosBlob {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-40px,30px) scale(1.1); }
}

.nos-section {
  position: relative;
  background: linear-gradient(160deg, #080f0e 0%, #0f2220 45%, #1C3330 100%);
  overflow: hidden;
  padding-block: var(--space-3xl);
}

.nos-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.nos-blob-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(189,154,150,0.1) 0%, transparent 70%);
  top: -180px; right: -100px;
  filter: blur(80px);
  animation: nosBlob 20s ease-in-out infinite;
}
.nos-blob-b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,76,71,0.45) 0%, transparent 70%);
  bottom: -150px; left: -120px;
  filter: blur(90px);
  animation: nosBlob 26s ease-in-out infinite reverse;
}

/* Grid principal */
.nos-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

/* Columna foto */
.nos-photo-col { position: relative; }

.nos-photo-frame {
  position: relative;
  border-radius: 28px;
  overflow: visible;
  aspect-ratio: 4/5;
  max-width: 420px;
}

.nos-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  display: block;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  filter: drop-shadow(0 0 40px rgba(189,154,150,0.15));
  transition: transform 0.6s ease;
}
.nos-photo-frame:hover .nos-photo { transform: scale(1.02); }

/* Chips flotantes */
.nos-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(8,18,16,0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  text-align: center;
  animation: h2BadgeFloat 4s ease-in-out infinite;
}
.nos-chip-years  { bottom: -20px; left: -20px; animation-delay: 0s; }
.nos-chip-rating { top: 30px;    right: -20px; animation-delay: 1.8s; }

.nos-chip-num   { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.nos-chip-stars { color: #f5c04c; font-size: 0.85rem; letter-spacing: 2px; }
.nos-chip-lbl   { font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 2px; white-space: nowrap; }

/* Columna historia */
.nos-story-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.nos-quote {
  padding: 28px 32px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(189,154,150,0.5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nos-quote svg { margin-bottom: 14px; }
.nos-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 12px;
}
.nos-quote cite {
  font-size: 0.78rem;
  font-style: normal;
  color: var(--mauve-light);
  letter-spacing: 1px;
}

.nos-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.nos-body strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Stats */
.nos-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nos-stat { text-align: center; }
.nos-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.nos-stat span { font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }
.nos-stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* Botones nosotros */
.nos-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--mauve);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(189,154,150,0.3);
}
.nos-btn-primary:hover { background: var(--mauve-dark); transform: translateY(-2px); color: #fff; }

.nos-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.nos-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #ffffff; background: rgba(28,51,48,0.6); }

/* Valores / Pilares */
.nos-values { display: block; }

.nos-values-head {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.nos-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nos-value-card {
  padding: 32px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(0.34,1.4,0.64,1);
}
.nos-value-card:hover {
  background: rgba(189,154,150,0.08);
  border-color: rgba(189,154,150,0.25);
  transform: translateY(-6px);
}
.nos-value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.nos-value-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.nos-value-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 0; }

/* ── RESPONSIVE NOSOTROS ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .nos-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nos-grid { grid-template-columns: 1fr; }
  .nos-photo-frame { max-width: 360px; margin-inline: auto; }
  .nos-chip-years  { bottom: -16px; left: 0; }
  .nos-chip-rating { top: 16px;    right: 0; }
}
@media (max-width: 600px) {
  .nos-values-grid { grid-template-columns: 1fr; }
  .nos-stats { gap: 16px; }
  .nos-stat strong { font-size: 1.6rem; }
}

/* ══════════════════════════════════════════════════════════════
   SECCIÓN TESTIMONIOS
   ══════════════════════════════════════════════════════════════ */

.tst-section {
  background: var(--cream);
  padding-block: var(--space-3xl);
}

/* Cabecera */
.tst-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.tst-head-text { flex: 1; min-width: 200px; }

.tst-metrics {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.tst-metric { text-align: center; }
.tst-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde-dark);
  line-height: 1;
}
.tst-metric span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.5px; }
.tst-metric-stars { color: #f5c04c; font-size: 0.75rem; letter-spacing: 2px; margin: 2px 0; }
.tst-metric-sep { width: 1px; height: 50px; background: var(--beige); flex-shrink: 0; }

/* Mosaico principal */
.tst-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.tst-col-right { display: flex; flex-direction: column; gap: 20px; }

/* Tarjeta base */
.tst-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.3s ease;
  overflow: hidden;
}
.tst-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 700;
  color: var(--beige);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.tst-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.tst-card--featured {
  background: var(--verde-dark);
  border-color: transparent;
}
.tst-card--featured::before { color: rgba(255,255,255,0.05); }
.tst-card--featured .tst-text { color: rgba(255,255,255,0.9); }
.tst-card--featured .tst-name { color: #fff; }
.tst-card--featured .tst-course { color: var(--mauve-light); }
.tst-card--featured .tst-loc { color: rgba(255,255,255,0.4); }

.tst-card--dark {
  background: var(--verde);
  border-color: transparent;
}
.tst-card--dark::before { color: rgba(255,255,255,0.06); }
.tst-card--dark .tst-text { color: rgba(255,255,255,0.85); }
.tst-card--dark .tst-name { color: #fff; }
.tst-card--dark .tst-course { color: #c9a9a5; }
.tst-card--dark .tst-loc { color: rgba(255,255,255,0.4); }

/* Stars */
.tst-stars { color: #f5c04c; font-size: 1rem; letter-spacing: 3px; }
.tst-stars--sm { font-size: 0.8rem; letter-spacing: 2px; }

/* Texto */
.tst-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Autor */
.tst-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.tst-author--sm { gap: 10px; }

.tst-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tst-avatar--m { background: #9e6b66; color: #fff; }
.tst-avatar--l { background: #4a7a75; color: #fff; }
.tst-avatar--a { background: var(--mauve-dark); color: #fff; }
.tst-avatar--c { background: var(--verde); color: #fff; }
.tst-avatar--v { background: #7a5552; color: #fff; }
.tst-avatar--g { background: var(--verde-dark); color: #fff; }

.tst-name   { font-weight: 700; font-size: 0.93rem; color: var(--text-dark); margin: 0; }
.tst-course { font-size: 0.75rem; color: var(--text-muted); margin: 2px 0 0; }
.tst-loc    { font-size: 0.72rem; color: var(--text-muted); margin: 2px 0 0; }

/* Tag */
.tst-tag {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mauve-light);
  background: rgba(189,154,150,0.15);
  padding: 5px 12px;
  border-radius: 50px;
}

/* Fila mini */
.tst-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tst-mini {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.3s ease;
}
.tst-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tst-mini--accent { background: var(--beige-light); border-color: var(--beige); }

.tst-mini-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

/* ── RESPONSIVE TESTIMONIOS ────────────────────────────────── */
@media (max-width: 960px) {
  .tst-mosaic { grid-template-columns: 1fr; }
  .tst-row    { grid-template-columns: 1fr 1fr; }
  .tst-head   { flex-direction: column; align-items: flex-start; }
  .tst-metrics { width: 100%; justify-content: space-around; }
}
@media (max-width: 640px) {
  .tst-row    { grid-template-columns: 1fr; }
  .tst-card   { padding: 24px; }
  .tst-card::before { font-size: 6rem; top: -5px; right: 16px; }
}
