/* ============================================
   Dr. Ricardo Woge - Design System Premium
   ORL & Cirugía de Cabeza y Cuello
   ============================================ */

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

/* ---- Variables ---- */
:root {
  --navy: #0B1F3A;
  --navy-light: #132D52;
  --gold: #B8965A;
  --gold-light: #D4AF7A;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #F9F7F4;
  --gray-100: #F3F1EE;
  --gray-300: #C8C4BE;
  --gray-500: #8E8881;
  --gray-700: #504D48;
  --dark: #111111;
  --success: #2D6A4F;
  --error: #C62828;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg: 0 24px 64px rgba(11,31,58,0.18);
  --shadow-gold: 0 8px 32px rgba(184,150,90,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
.serif { font-family: var(--font-serif); }
.display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  font-weight: 300;
  max-width: 560px;
}

/* ---- Layout ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }
section.section-sm { padding: 4rem 0; }

/* ============================================
   BARRA SUPERIOR
   ============================================ */
.topbar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: 0.78rem;
  padding: 0.55rem 0;
  font-family: var(--font-sans);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; }
.topbar-item svg { width: 14px; height: 14px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,150,90,0.15);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--gold); }
.logo-text-primary {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.logo-text-secondary {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-pale); }
.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(184,150,90,0.15);
  border-radius: var(--radius);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  padding: 0.5rem;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  font-size: 0.82rem;
  padding: 0.6rem 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  background: var(--gold-pale);
  color: var(--gold);
  padding-left: 1.2rem;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: var(--radius-xl);
  font-weight: 700 !important;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.08em;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--navy), var(--navy-light)) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* ============================================
   HERO / SLIDER
   ============================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy);
}
.slider { width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.5) 55%, rgba(11,31,58,0.2) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.slide-content .container { width: 100%; }
.slide-text {
  max-width: 680px;
  color: var(--white);
}
.slide-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}
.slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }
.slide-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease 0.5s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }
.slide-title em { color: var(--gold-light); font-style: italic; }
.slide-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.7s;
}
.slide.active .slide-subtitle { opacity: 1; transform: translateY(0); }
.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.9s;
}
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,150,90,0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-gold-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
  z-index: 10;
}
.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}
.slider-arrow svg { width: 20px; height: 20px; fill: var(--white); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stats-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
}

/* ============================================
   SECCIÓN: SOBRE EL DR.
   ============================================ */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about-badge-text { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 0.25rem; }
.about-gold-line {
  position: absolute;
  top: 2rem;
  left: -1rem;
  width: 3px;
  height: 120px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}
.about-content {}
.about-content p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  font-weight: 300;
}
.about-credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.credential-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.about-actions { margin-top: 2.5rem; display: flex; gap: 1rem; }

/* ============================================
   SERVICIOS
   ============================================ */
.services-section { background: var(--white); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,150,90,0.2);
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.6;
}
.service-link {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.service-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ============================================
   GALERÍA ANTES/DESPUÉS
   ============================================ */
.gallery-section { background: var(--navy); }
.gallery-section .section-eyebrow { color: var(--gold-light); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.6); }
.gallery-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--navy-light);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(11,31,58,0.7);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-track {
  overflow: hidden;
}
.testimonials-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-width: calc(33.33% - 1rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,150,90,0.1);
  flex-shrink: 0;
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
  font-weight: 700;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-size: 0.98rem;
  color: var(--gray-700);
  font-weight: 300;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.testimonial-procedure {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testimonial-location { font-size: 0.78rem; color: var(--gray-500); }
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.testimonial-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   VIAJA Y OPÉRATE
   ============================================ */
.travel-section { background: var(--white); }
.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.travel-image {
  position: relative;
}
.travel-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.travel-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.travel-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.travel-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.travel-step-title { font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.25rem; }
.travel-step-desc { font-size: 0.85rem; color: var(--gray-500); }

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: var(--off-white); }
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: block;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-body { padding: 1.75rem; }
.blog-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-weight: 600;
}
.blog-card-excerpt { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.blog-read-more {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 120px; }
.faq-sidebar-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.faq-sidebar p { color: var(--gray-500); margin-bottom: 2rem; font-size: 0.95rem; }
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  border: 1px solid rgba(184,150,90,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--off-white);
  transition: background var(--transition);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  gap: 1rem;
}
.accordion-header:hover { background: var(--gold-pale); }
.accordion-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion-icon svg { width: 12px; height: 12px; fill: var(--gold); transition: transform var(--transition); }
.accordion-item.open .accordion-icon { background: var(--gold); }
.accordion-item.open .accordion-icon svg { fill: var(--white); transform: rotate(45deg); }
.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.accordion-item.open .accordion-body { max-height: 300px; padding: 1rem 1.5rem 1.5rem; }
.accordion-body p { color: var(--gray-700); font-size: 0.92rem; line-height: 1.7; }

/* ============================================
   EQUIPO
   ============================================ */
.team-section { background: var(--navy); }
.team-section .section-eyebrow { color: var(--gold-light); }
.team-section .section-title { color: var(--white); }
.team-header { text-align: center; margin-bottom: 3.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,150,90,0.3);
}
.team-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.team-card:hover .team-image img { transform: scale(1.04); }
.team-info { padding: 1.75rem; }
.team-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.team-title { font-size: 0.78rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.25rem; }
.team-specialty { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.team-social { display: flex; gap: 0.5rem; }
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--gold); transform: scale(1.1); }
.team-social svg { width: 16px; height: 16px; fill: var(--white); }

/* ============================================
   CITAS
   ============================================ */
.appointments-section { background: var(--off-white); }
.appointments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.appointments-info { }
.appointments-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184,150,90,0.1);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-subtitle { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-value a:hover { color: var(--gold); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.whatsapp-btn svg { width: 22px; height: 22px; fill: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo .logo-text-primary { color: var(--white); }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.65rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); transform: scale(1.1); }
.social-btn svg { width: 17px; height: 17px; fill: var(--white); }
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-newsletter input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
}
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter .btn { width: 100%; justify-content: center; font-size: 0.75rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all var(--transition);
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.float-wa svg { width: 30px; height: 30px; fill: var(--white); }
.float-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   NOTIFY / TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  z-index: 9999;
  transition: transform 0.4s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--error); }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid, .travel-grid, .appointments-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-sidebar { position: static; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .topbar .topbar-left { display: none; }
  .nav-menu { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--white); padding: 6rem 2rem 2rem; gap: 0; overflow-y: auto; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 0.85rem; border-radius: var(--radius); }
  .hamburger { display: flex; z-index: 1000; }
  .testimonial-card { min-width: calc(100% - 1rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .slide-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 1.8rem; }
  .hero { height: 100svh; }
  .about-badge { position: static; margin-top: 1rem; display: inline-flex; gap: 1rem; border-radius: var(--radius); }
}

/* Utilidades */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ============================================================
   PAGE-SPECIFIC STYLES — Blog, Services, Travel, Results
   ============================================================ */

/* Blog Index */
.blog-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3560 100%); padding: 160px 0 100px; text-align: center; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; padding: 80px 0; }
.blog-card-lg { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); margin-bottom: 2.5rem; transition: transform .3s, box-shadow .3s; }
.blog-card-lg:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card-lg:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 2rem; }
.blog-tag { display: inline-block; background: rgba(184,150,90,.12); color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1rem; }
.blog-card-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--navy); margin-bottom: .7rem; line-height: 1.3; }
.blog-card-body p { color: #666; line-height: 1.8; font-size: .95rem; margin-bottom: 1.2rem; }
.blog-meta { font-size: .8rem; color: #999; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.blog-sidebar-widget { background: #fff; border-radius: 12px; padding: 1.8rem; margin-bottom: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.blog-sidebar-widget h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 2px solid var(--gold); }

/* Blog Post */
.post-hero { background: var(--navy); padding: 160px 0 80px; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; max-width: 1160px; margin: 0 auto; padding: 80px 2rem; }
.post-content { font-size: 1.05rem; line-height: 1.9; color: #444; }
.post-content h2, .post-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--navy); margin: 2.5rem 0 1rem; }
.post-content h2 { font-size: 2rem; }
.post-content h3 { font-size: 1.5rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content img { max-width: 100%; border-radius: 8px; margin: 1.5rem 0; }
.post-content ul, .post-content ol { margin: 1.2rem 0 1.5rem 2rem; }
.post-content li { margin-bottom: .5rem; }
.post-content blockquote { border-left: 4px solid var(--gold); padding: 1rem 1.5rem; margin: 2rem 0; background: rgba(184,150,90,.06); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--navy); }
.author-box { background: #f8f6f1; border-radius: 12px; padding: 2rem; margin-top: 3rem; display: flex; gap: 1.5rem; align-items: center; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--gold); }

/* Service Detail */
.service-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 80px 0; }
.service-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--navy); margin: 2rem 0 1rem; }
.service-content p { color: #555; line-height: 1.9; margin-bottom: 1.2rem; }
.service-nav a { display: block; padding: .9rem 1.2rem; border-bottom: 1px solid #eee; color: var(--navy); text-decoration: none; font-size: .9rem; font-family: 'Montserrat', sans-serif; transition: color .2s, padding-left .2s; }
.service-nav a:hover, .service-nav a.active { color: var(--gold); padding-left: 1.6rem; }
.cta-box { background: linear-gradient(135deg, var(--navy), #1a3560); border-radius: 12px; padding: 2rem; color: #fff; margin-top: 1.5rem; }
.cta-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1rem; }
.cta-box p { font-size: .9rem; color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }

/* Travel page */
.travel-step { animation: none; }
@media (max-width: 768px) {
  .travel-step { flex-direction: column !important; text-align: center !important; }
  .travel-step > div:last-child { display: none; }
  .blog-layout, .post-layout, .service-layout { grid-template-columns: 1fr; }
  .blog-sidebar-widget:first-child { order: -1; }
}

/* Buttons shared */
.btn-outline-gold { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 2rem; border: 2px solid var(--gold); color: var(--gold); text-decoration: none; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: all .3s; }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
