:root {
  --bg: #070a12;
  --bg-soft: #111827;
  --card: #101521;
  --gold: #d4af37;
  --gold-soft: #8b6f3d;
  --text: #f3f4f6;
  --text-muted: #bac2d0;
  --border: rgba(212, 175, 55, 0.22);
  --radius: 1rem;
  --radius-sm: 0.7rem;
  --max: 1120px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.12), transparent 40%),
    radial-gradient(circle at 10% 20%, rgba(139, 111, 61, 0.2), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.25;
  font-family: 'Cinzel', serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 10, 18, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
}

.logo-mark {
  color: var(--gold);
}

.notification-bell {
  position: relative;
  font-size: 1.3rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform var(--transition);
}

.notification-bell:hover {
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.notification-badge.hidden {
  display: none;
}

.notification-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 1rem;
  width: min(90vw, 380px);
  max-height: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 200;
  animation: dropdownSlide 0.25s ease;
}

.notification-dropdown.open {
  display: flex;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-header {
  padding: 1rem 1rem 0.8rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-header h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--gold);
}

.notification-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color var(--transition);
}

.notification-clear:hover {
  color: var(--gold);
}

.notification-list {
  overflow-y: auto;
  max-height: 400px;
}

.notification-item {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-item:hover {
  background: rgba(212, 175, 55, 0.08);
}

.notification-item[data-read="false"] {
  background: rgba(212, 175, 55, 0.05);
}

.notification-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.notification-content {
  flex: 1;
}

.notification-title {
  margin: 0 0 0.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.notification-text {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.notification-time {
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.7;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.93rem;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-image,
.hero-overlay,
.stars,
.hero-section-image,
.hero-section-overlay,
.stars-section,
.fire-particles {
  position: absolute;
  inset: 0;
}

.hero-section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.5) contrast(1.1) saturate(1.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.05);
}

.hero-overlay,
.hero-section-overlay {
  z-index: 1;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.4) 0%, rgba(7, 10, 18, 0.94) 82%);
}

.hero-section-overlay {
  background: 
    radial-gradient(ellipse at 50% 85%, rgba(212, 120, 30, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 45% 90%, rgba(255, 140, 0, 0.12) 0%, transparent 35%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.3) 0%, rgba(7, 10, 18, 0.85) 70%, rgba(7, 10, 18, 0.95) 100%);
}

.stars,
.stars-section {
  z-index: 2;
  pointer-events: none;
}

.fire-particles {
  z-index: 2;
  pointer-events: none;
}

.fire-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ff9d4d 0%, #ff6b00 50%, transparent 100%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(1px);
  animation: rise var(--duration, 4s) var(--delay, 0s) infinite ease-out;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1);
  }
  10% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-120vh) translateX(var(--drift, 20px)) scale(0.3);
  }
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: twinkle var(--duration, 3s) var(--delay, 0s) infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: var(--max-opacity, 0.8);
    transform: scale(1.35);
  }
}

.hero-content,
.hero-section-content {
  position: relative;
  z-index: 3;
}

.hero-section-content {
  text-align: left;
}

.hero-section-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.hero-section-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.hero-section-content .eyebrow {
  text-align: center;
  display: block;
}

.hero-section-content .highlight-text {
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin-top: 1.8rem;
  font-weight: 500;
}

.hero-section-content strong {
  color: var(--gold);
  font-weight: 600;
}

.eyebrow {
  margin-bottom: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  margin-bottom: 0.8rem;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 1.8rem;
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #161616;
  border: none;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--text);
  background: rgba(7, 10, 18, 0.45);
}

.section {
  padding: 5.5rem 0;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.section p {
  color: var(--text-muted);
}

.alt {
  background: none;
  padding: 0;
  margin: 0;
}

.cards-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.card,
.step,
.bio-card,
.testimonial,
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.4rem;
}

.card h3 {
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.medicinas-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.medicina-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.medicina-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.3), 0 0 0 2px var(--gold);
}

.medicina-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.medicina-card:hover img {
  transform: scale(1.1);
}

.medicina-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.3) 0%, rgba(7, 10, 18, 0.85) 65%, rgba(7, 10, 18, 0.95) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.medicina-card:hover .medicina-overlay {
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.2) 0%, rgba(7, 10, 18, 0.75) 60%, rgba(7, 10, 18, 0.92) 100%);
}

.medicina-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.medicina-card:hover .medicina-content {
  transform: translateY(-6px);
}

.medicina-content h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.medicina-content p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* ===== Escuela Chamánica ===== */
.escuela-hero-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.4),
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(212, 175, 55, 0.08);
}

.escuela-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 10, 18, 0) 50%,
    rgba(7, 10, 18, 0.7) 100%
  );
  pointer-events: none;
}

.escuela-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: brightness(0.92) saturate(1.1);
}

.escuela-hero-img:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.15);
}

.escuela-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.escuela-intro-layout .escuela-intro {
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .escuela-intro-layout {
    grid-template-columns: 1fr;
  }
  .escuela-hero-img img {
    height: 300px;
  }
}

.escuela-intro {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.escuela-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.escuela-subtitulo {
  text-align: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
  font-family: 'Cinzel', serif;
  opacity: 0.9;
}

.escuela-grid {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.escuela-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  flex: 0 1 280px;
}

.escuela-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  opacity: 0;
  transition: opacity var(--transition);
}

.escuela-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.escuela-card:hover::before {
  opacity: 1;
}

.escuela-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.escuela-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.escuela-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.escuela-dirigido {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.escuela-dirigido h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.escuela-dirigido p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.escuela-filosofia {
  margin: 2.5rem auto 0;
  max-width: 760px;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(139, 111, 61, 0.08));
  border-radius: 0 var(--radius) var(--radius) 0;
}

.escuela-filosofia p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.escuela-filosofia footer {
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  font-size: 0.95rem;
}

.escuela-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.steps-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.step {
  padding: 1.35rem;
}

.step span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  color: #1f1f1f;
  background: var(--gold);
  margin-bottom: 0.8rem;
}

.bio-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.bio-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.25), 0 0 0 2px var(--gold);
}

.bio-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
}

.bio-card h3,
.bio-card p {
  padding-inline: 1rem;
}

.bio-card h3 {
  padding-top: 1rem;
  margin-bottom: 0.45rem;
  color: var(--gold);
}

.bio-card p {
  padding-bottom: 0.5rem;
}

.bio-more {
  display: block;
  padding: 0.5rem 1rem 1rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.bio-card:hover .bio-more {
  opacity: 1;
}

/* ===== Bio Modal ===== */
.bio-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalFadeIn 0.3s ease;
}

.bio-modal-overlay.open {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bio-modal {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  animation: modalSlideIn 0.35s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bio-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.8rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
}

.bio-modal-close:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.bio-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bio-modal-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius) 0 0 var(--radius);
}

.bio-modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-modal-info h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.bio-modal-info p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .bio-modal-body {
    grid-template-columns: 1fr;
  }

  .bio-modal-img {
    min-height: 280px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .bio-modal-info {
    padding: 1.5rem;
  }
}

.closing-phrase {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--gold);
  font-weight: 600;
}

.testimonials-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.testimonial {
  margin: 0;
  padding: 1.4rem;
}

.testimonial p {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.8rem 0;
}

.testimonial cite {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: normal;
  opacity: 0.85;
}

.testimonial-form-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.testimonial-form {
  max-width: 580px;
  margin: 1.5rem auto 0;
  text-align: left;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-form select {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 0.8rem 0.9rem;
  font: inherit;
  cursor: pointer;
}

.testimonial-form select:focus {
  outline: 2px solid rgba(212, 175, 55, 0.35);
  border-color: var(--gold);
}

.testimonial-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.testimonial-actions .btn {
  flex: 1;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.oferta-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.oferta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.oferta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.oferta-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.oferta-badge.destacada {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.oferta-content h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--gold);
}

.oferta-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.oferta-price {
  margin: 1.5rem 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.precio-anterior {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.precio-actual {
  color: var(--gold);
}

.oferta-validez {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.oferta-card .btn {
  width: 100%;
  justify-content: center;
}

/* Tarjetas con imagen de flyer */
.oferta-card-img {
  padding: 0;
}

.oferta-card-img::before {
  display: none;
}

.oferta-img {
  width: 100%;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

.oferta-cta {
  padding: 1.2rem 1.5rem;
}

.oferta-cta .btn {
  width: 100%;
  justify-content: center;
}

.oferta-card.reveal {
  opacity: 1;
  transform: none;
}

.faq-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  padding: 1rem 1rem 0.8rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.cta-final {
  text-align: center;
}

.disclaimer h2 {
  color: var(--gold);
}

.contact-form {
  margin-top: 1.4rem;
}

.field-group {
  margin-bottom: 1rem;
}

.field-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.35);
  border-color: var(--gold);
}

.field-group .error {
  border-color: #f87171;
}

.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  font-weight: 500;
}

.form-feedback.success {
  color: #4ade80;
}

.form-feedback.error {
  color: #fda4af;
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--border);
  background: #06080e;
}

.brand {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  margin-bottom: 0.2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-contact a,
.footer-social a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  transition: color var(--transition);
}

.footer-contact a:hover,
.footer-social a:hover {
  color: var(--gold);
}

.footer-contact p,
.footer-social p {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.copyright {
  grid-column: 1 / -1;
  color: #9ca3af;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .copyright {
    grid-column: auto;
  }
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.7rem;
  display: grid;
  place-items: center;
  background: #0f766e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 99;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .notification-bell {
    order: -1;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    background: rgba(7, 10, 18, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    flex-direction: column;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 88vh;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 4.3rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .bio-card img {
    height: 280px;
  }
}

/* ===== Propuesta / Problema-Solucion ===== */
.section-title {
  text-align: center;
  color: var(--gold);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 2.5rem;
}

.problema-solucion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.propuesta-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.propuesta-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

.propuesta-card:hover .propuesta-card-bg {
  transform: scale(1.05);
}

.propuesta-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 18, 0.82) 0%,
    rgba(7, 10, 18, 0.7) 50%,
    rgba(7, 10, 18, 0.85) 100%
  );
}

.propuesta-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  text-align: center;
}

.propuesta-card-content h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.propuesta-card-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.propuesta-card-content ul {
  color: var(--gold);
  font-weight: 500;
  text-align: left;
  display: inline-block;
  margin: 1rem auto;
  padding-left: 1.2rem;
  list-style: disc;
}

.propuesta-card-content ul li {
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .problema-solucion-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .propuesta-card {
    min-height: 480px;
  }

  .propuesta-card-content {
    padding: 2rem 1.5rem;
  }
}

/* ===== Ver más en medicina-card ===== */
.medicina-card-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.medicina-ver-mas {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.medicina-card:hover .medicina-ver-mas {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Modal Medicina ===== */
.medicina-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalFadeIn 0.3s ease;
}

.medicina-modal-overlay.open {
  display: flex;
}

.medicina-modal {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
  animation: modalSlideIn 0.35s ease;
}

.medicina-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.8rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
}

.medicina-modal-close:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.medicina-modal-banner {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.medicina-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.medicina-modal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,10,18,0.2) 0%, rgba(7,10,18,0.85) 100%);
}

.medicina-modal-name {
  position: absolute;
  bottom: 1.2rem;
  left: 1.8rem;
  right: 4rem;
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.4rem, 4vw, 2rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.medicina-modal-body {
  padding: 1.8rem 2rem 2rem;
}

.medicina-modal-intro p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.medicina-modal-intro p:last-child {
  margin-bottom: 0;
}

.medicina-modal-levels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}

.medicina-modal-level {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}

.medicina-modal-level-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.medicina-modal-level-icon {
  font-size: 1.2rem;
}

.medicina-modal-level ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.medicina-modal-level ul li {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.medicina-modal-level ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .medicina-modal-banner {
    height: 200px;
  }

  .medicina-modal-body {
    padding: 1.2rem 1.2rem 1.5rem;
  }

  .medicina-modal-levels {
    grid-template-columns: 1fr;
  }
}

