/* ========================================
   PÁGINAS INTERNAS
   ======================================== */

/* PAGE HEADER */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200, 168, 98, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb i { font-size: 0.7rem; }
.page-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: end;
}
.page-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.page-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.problem-statement {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  max-width: 540px;
}
.page-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.page-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.page-stats > div { display: flex; flex-direction: column; }
.page-stats strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold-dark);
  line-height: 1;
}
.page-stats span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

/* CÓMO FUNCIONA */
.how-works {
  padding: 6rem 0;
  background: var(--white);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.how-step {
  padding: 2rem 0;
  text-align: left;
  position: relative;
}
.step-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.how-step p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* NEXT TRIPS */
.next-trips {
  padding: 8rem 0;
  background: var(--cream);
}
.trip-full {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.5s var(--ease);
}
.trip-full:hover { box-shadow: var(--shadow-md); }
.trip-full:last-child { margin-bottom: 0; }
.trip-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.trip-full-grid.reversed { grid-template-columns: 1.2fr 1fr; }
.trip-full-grid.reversed .trip-full-content { order: 1; }
.trip-full-grid.reversed .trip-full-images { order: 2; }
.trip-full-images {
  position: relative;
  min-height: 500px;
  background: var(--navy);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.trip-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trip-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trip-countdown {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 42, 107, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 2;
  border: 1px solid rgba(200, 168, 98, 0.3);
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.countdown-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}
.trip-full-content {
  padding: 3.5rem 3rem;
}
.trip-full-header {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.trip-tag-light {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--cream-warm);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.trip-full-header h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.trip-full-header h3 .amp {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.trip-full-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.trip-full-meta i {
  color: var(--gold);
  margin-right: 0.5rem;
}
.trip-full-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.trip-full-sections { margin-bottom: 2.5rem; }
.trip-section { margin-bottom: 1.75rem; }
.trip-section:last-child { margin-bottom: 0; }
.trip-section h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trip-section h4 i {
  color: var(--gold);
  font-size: 1rem;
}
.trip-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.75rem;
  position: relative;
}
.trip-section ul::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--gold-soft);
}
.trip-section li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  position: relative;
}
.trip-section li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.trip-section strong { color: var(--navy); font-weight: 700; }
.trip-full-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trip-full-price { display: flex; flex-direction: column; }
.price-from {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.price-big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0.25rem 0;
}
.price-per {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* WHY ME */
.why-me {
  padding: 6rem 0;
  background: var(--cream-warm);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-warm);
  color: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* TRIP CTA */
.trip-cta {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.trip-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 168, 98, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.trip-cta-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.trip-cta-content .section-label { padding: 0 2.5rem; }
.trip-cta-content .section-label::before { left: 0; top: 50%; }
.trip-cta-content .section-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold-light);
}
.trip-cta-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 1.5rem 0 2.5rem;
}
.trip-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trip-cta-buttons .btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.trip-cta-buttons .btn-primary:hover {
  background: var(--gold-light);
}

/* CONSULTORÍA - SERVICES */
.services {
  padding: 6rem 0;
  background: var(--cream);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: start;
  transition: all 0.4s var(--ease);
}
.service-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.service-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
}
.service-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-for {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.service-body p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
}
.service-body ul li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.service-result {
  padding: 1rem 1.25rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
}
.service-result strong {
  color: var(--navy);
  font-style: normal;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--gold-dark);
}

/* GUÍAS PAGE */
.guias-page {
  padding: 6rem 0;
  background: var(--cream);
}
.guias-section { margin-bottom: 6rem; }
.guias-section:last-child { margin-bottom: 0; }
.guias-section-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.guias-section-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
}
.guias-section-header p {
  color: var(--ink-muted);
  max-width: 400px;
  font-size: 0.95rem;
}

.guia-full-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  align-items: center;
  transition: all 0.3s var(--ease);
}
.guia-full-card:hover {
  transform: translateX(4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}
.guia-big-icon {
  width: 64px;
  height: 64px;
  background: var(--cream-warm);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
}
.guia-full-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.guia-full-body p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* DESTINO CARDS - CON THUMBS REALES DE YOUTUBE */
.destino-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease);
}
.destino-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.destino-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.destino-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.destino-card:hover .destino-thumb img {
  transform: scale(1.05);
}
.destino-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 42, 107, 0.4);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.destino-card:hover .destino-thumb-overlay { opacity: 1; }
.destino-thumb-play {
  width: 70px;
  height: 70px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  padding-left: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.destino-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.destino-country {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.destino-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.destino-content p {
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.destino-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* SOBRE MÍ */
.about-hero {
  padding: 10rem 0 4rem;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-story {
  padding: 6rem 0;
  background: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}
.about-story-grid h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
  position: sticky;
  top: 100px;
}
.story-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.story-body p strong {
  color: var(--navy);
  font-weight: 600;
}
.story-body p em {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15em;
}

/* MEDIA KIT */
.mk-big-stats {
  padding: 5rem 0;
  background: var(--white);
}
.mk-big-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mk-big-stat {
  padding: 3rem 2rem;
  background: var(--white);
  text-align: center;
}
.mk-big-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.mk-big-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.mk-big-note {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.audience {
  padding: 6rem 0;
  background: var(--cream-warm);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.audience-chart {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.pie-chart {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold) 0deg 194deg,
    var(--navy) 194deg 360deg
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.pie-chart::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--cream-warm);
  border-radius: 50%;
}
.pie-chart-center {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pie-chart-center strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.pie-chart-center span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
  display: block;
}
.pie-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.pie-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.pie-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.pie-dot.gold { background: var(--gold); }
.pie-dot.navy { background: var(--navy); }

.age-bars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.age-bar {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  align-items: center;
  gap: 1rem;
}
.age-bar-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.age-bar-track {
  height: 10px;
  background: var(--sand);
  border-radius: 100px;
  overflow: hidden;
}
.age-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 100px;
  transform-origin: left;
  animation: barGrow 1.5s var(--ease);
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.age-bar-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gold-dark);
  text-align: right;
}

/* MK CASES - CON IMAGENES REALES */
.mk-cases {
  padding: 6rem 0;
  background: var(--white);
}
.mk-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.mk-case-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.mk-case-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.mk-case-image {
  aspect-ratio: 4/5;
  max-height: 320px;
  overflow: hidden;
  background: var(--cream-warm);
}
.mk-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mk-case-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mk-case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.mk-case-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.mk-case-metrics {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mk-case-metric {
  display: flex;
  flex-direction: column;
}
.mk-case-metric strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--gold-dark);
  line-height: 1;
}
.mk-case-metric span {
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* MK SERVICES */
.mk-services {
  padding: 6rem 0;
  background: var(--cream-warm);
}
.mk-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.mk-service-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}
.mk-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.mk-service-icon {
  width: 60px;
  height: 60px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}
.mk-service-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.mk-service-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* CONTACTO / NEWSLETTER */
.contacto {
  padding: 8rem 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(200, 168, 98, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.contacto .container { position: relative; z-index: 1; }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contacto-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin: 1.5rem 0 2.5rem;
}
.contacto-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.contact-item:hover {
  background: rgba(200, 168, 98, 0.1);
  border-color: var(--gold);
  transform: translateX(4px);
}
.contact-item i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.1rem;
}
.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.contacto-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.newsletter-form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter-form > p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.form-row { margin-bottom: 1rem; }
.form-row input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.form-row input::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-row input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.newsletter-form .btn-primary {
  background: var(--gold);
  color: var(--navy);
  margin-top: 0.5rem;
}
.newsletter-form .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 28px rgba(200, 168, 98, 0.3);
}
.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 1rem;
}

/* ========================================
   MODAL DE GUÍAS - Visual atractivo
   ======================================== */
.guias-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 107, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  z-index: 9999;
}
.guias-modal.active {
  opacity: 1;
  visibility: visible;
}
.guias-modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 3rem 2.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
.guias-modal.active .guias-modal-box {
  transform: scale(1) translateY(0);
}
.guias-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
}
.guias-modal-close:hover {
  background: var(--navy);
  color: var(--white);
  transform: rotate(90deg);
}
.guias-modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 32px rgba(200, 168, 98, 0.35);
  position: relative;
}
.guias-modal-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0.4;
  animation: rotate 12s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.guias-modal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.guias-modal h3 em {
  font-style: italic;
  color: var(--gold-dark);
}
.guias-modal-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.guias-modal-keyword {
  background: var(--cream-warm);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem auto;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 500;
}
.guias-modal-keyword i {
  font-size: 1.2rem;
  color: var(--gold-dark);
}
.guias-modal-steps {
  text-align: left;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.guias-modal-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.6rem 0;
}
.guias-modal-step-number {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.guias-modal-cta {
  background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  width: 100%;
  transition: all 0.3s var(--ease);
  box-shadow: 0 12px 28px rgba(225, 48, 108, 0.3);
}
.guias-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(225, 48, 108, 0.4);
}
.guias-modal-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}

/* ============ RESPONSIVE PÁGINAS INTERNAS ============ */

/* Tablet grande: ~1024px */
@media (max-width: 1024px) {
  .page-header-grid,
  .about-grid,
  .about-story-grid,
  .audience-grid,
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .mk-big-grid { grid-template-columns: 1fr 1fr; }
  .mk-cases-grid { grid-template-columns: 1fr 1fr; }
  .mk-services-grid { grid-template-columns: 1fr 1fr; }
  .trip-full-grid,
  .trip-full-grid.reversed {
    grid-template-columns: 1fr;
  }
  .trip-full-grid.reversed .trip-full-content { order: 2; }
  .trip-full-grid.reversed .trip-full-images { order: 1; }
  .trip-full-images { min-height: 380px; }
  .trip-image-main { width: 100%; height: 100%; }
  .destino-card { grid-template-columns: 1fr; }
  .destino-thumb { aspect-ratio: 16/9; }
  .about-story-grid h2 { position: static; }
}

/* Tablet pequeño + móvil grande: ~768px */
@media (max-width: 768px) {
  .page-header { padding: 7rem 0 3rem; }
  .breadcrumb { font-size: 0.78rem; }
  .page-title { font-size: clamp(2rem, 7.5vw, 3rem); line-height: 1.05; }
  .page-lead { font-size: 1rem; line-height: 1.6; }
  .problem-statement { font-size: 0.95rem; padding-left: 0.85rem; margin-bottom: 1rem; }

  .how-grid, .why-grid, .mk-big-grid, .mk-services-grid {
    grid-template-columns: 1fr;
  }
  /* Casos del Media Kit: GRID 2x3 en mobile (no 1 columna) */
  .mk-cases-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .how-works, .why-me, .trip-cta, .next-trips, .services, .about-hero, .about-story, .mk-big-stats, .audience, .mk-cases, .mk-services, .guias-page, .contacto {
    padding: 4rem 0;
  }

  /* TRIPS */
  .trip-full { margin-bottom: 2rem; border-radius: var(--radius-lg); }
  .trip-full-content { padding: 2rem 1.25rem; }
  .trip-full-header h3 { font-size: clamp(1.75rem, 5vw, 2.25rem); line-height: 1.15; }
  .trip-full-meta { gap: 1rem; font-size: 0.88rem; flex-direction: column; align-items: flex-start; }
  .trip-full-desc { font-size: 1rem; line-height: 1.65; }
  .trip-full-images { min-height: 380px; }
  .trip-image-main { width: 100%; height: 100%; }
  .trip-countdown { padding: 0.7rem 1rem; }
  .countdown-label { font-size: 0.6rem; }
  .countdown-value { font-size: 0.95rem; }
  .trip-full-footer { flex-direction: column; align-items: stretch; gap: 1.5rem; padding-top: 1.5rem; }
  .trip-full-price { align-items: flex-start; }
  .price-big { font-size: 2rem; }
  .trip-full-footer .btn { width: 100%; justify-content: center; }

  .trip-cta-buttons { flex-direction: column; gap: 0.85rem; }
  .trip-cta-buttons .btn { justify-content: center; width: 100%; font-size: 0.9rem; padding: 1rem 1.25rem; }
  .trip-cta-lead { font-size: 1rem; line-height: 1.65; }

  /* SERVICIOS */
  .service-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
  }
  .service-number { font-size: 2rem; }
  .service-body h3 { font-size: 1.3rem; line-height: 1.2; }
  .service-body ul { grid-template-columns: 1fr; }
  .service-item .btn { align-self: flex-start; width: auto; }

  /* GUÍAS PRÁCTICAS - cards */
  .guia-full-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    text-align: left;
  }
  .guia-big-icon { width: 56px; height: 56px; font-size: 1.35rem; }
  .guia-full-card h3 { font-size: 1.2rem; line-height: 1.25; }
  .guia-full-card .btn { width: 100%; justify-content: center; }

  /* DESTINOS GUÍAS */
  .destino-card { margin-bottom: 1.5rem; }
  .destino-content { padding: 1.5rem; }
  .destino-content h3 { font-size: 1.25rem; line-height: 1.25; }
  .destino-content p { font-size: 0.95rem; }
  .destino-actions { flex-direction: column; gap: 0.6rem; align-items: stretch; }
  .destino-actions .btn { justify-content: center; }

  /* PAGE STATS */
  .page-stats { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; padding-top: 1.5rem; }
  .page-stats strong { font-size: 1.4rem; }
  .page-stats span { font-size: 0.7rem; }

  /* MEDIA KIT BIG STATS */
  .mk-big-stat { padding: 2.25rem 1.5rem; }
  .mk-big-value { font-size: 2.5rem; }
  .mk-big-label { font-size: 0.75rem; }
  .mk-big-note { font-size: 0.72rem; line-height: 1.3; }

  /* Casos del Media Kit: GRID 2x3 en mobile (no 1 columna) */
  .mk-cases-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .mk-case-card { border-radius: var(--radius); }
  .mk-case-image {
    aspect-ratio: 1/1 !important;
    max-height: none !important;
  }
  .mk-case-image img { object-position: center; }
  .mk-case-body { padding: 0.85rem; }
  .mk-case-tag { font-size: 0.55rem; letter-spacing: 0.1em; padding: 0.25rem 0.55rem; margin-bottom: 0.4rem; }
  .mk-case-card h4 { font-size: 0.78rem; line-height: 1.25; margin-bottom: 0.5rem; min-height: 2.4em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .mk-case-metrics { gap: 0.4rem; padding-top: 0.6rem; }
  .mk-case-metric strong { font-size: 0.95rem; line-height: 1.1; }
  .mk-case-metric span { font-size: 0.55rem; }

  /* MK SERVICES */
  .mk-service-card { padding: 2rem 1.5rem; }
  .mk-service-card h4 { font-size: 1.05rem; }
  .mk-service-card p { font-size: 0.85rem; }

  /* CONTACTO / NEWSLETTER */
  .contacto-form-wrapper { padding: 1.75rem 1.5rem; border-radius: var(--radius-lg); }
  .newsletter-form h3 { font-size: 1.4rem; }
  .newsletter-form > p { font-size: 0.9rem; }
  .form-row input { padding: 0.85rem 1rem; font-size: 0.9rem; }
  .contact-item { padding: 1rem 1.25rem; gap: 1rem; }
  .contact-item i { width: 38px; height: 38px; font-size: 0.95rem; flex-shrink: 0; }
  .contact-label { font-size: 0.65rem; }
  .contact-value { font-size: 0.92rem; line-height: 1.3; }

  /* AUDIENCE */
  .pie-chart { width: 240px; height: 240px; }
  .pie-chart::before { width: 130px; height: 130px; }
  .pie-chart-center strong { font-size: 2rem; }
  .audience-grid h3 { font-size: 1.25rem !important; }
  .age-bar { grid-template-columns: 80px 1fr 50px; gap: 0.75rem; }
  .age-bar-label { font-size: 0.85rem; }
  .age-bar-value { font-size: 0.95rem; }

  /* HOW WORKS */
  .how-step { padding: 1rem 0; }
  .step-number { font-size: 2.5rem; margin-bottom: 0.85rem; }
  .how-step h3 { font-size: 1.2rem; }
  .how-step p { font-size: 0.9rem; }

  /* WHY ME */
  .why-card { padding: 2rem 1.5rem; }
  .why-card h3 { font-size: 1.15rem; }
  .why-card p { font-size: 0.9rem; }

  /* SOBRE MÍ */
  .about-image { max-width: 100%; aspect-ratio: 4/5; }
  .story-body p { font-size: 1rem; line-height: 1.7; }

  /* MODAL */
  .guias-modal-box { padding: 2.5rem 1.75rem; border-radius: var(--radius-lg); }
  .guias-modal h3 { font-size: 1.5rem; }
  .guias-modal-keyword { font-size: 1.25rem; padding: 1rem 1.25rem; }
  .guias-modal-icon { width: 70px; height: 70px; font-size: 1.75rem; }
}

/* Móvil pequeño: ~480px */
@media (max-width: 480px) {
  .page-header { padding: 6rem 0 2.5rem; }

  .trip-full-content { padding: 1.75rem 1.25rem; }
  .trip-full-images { min-height: 320px; }
  .trip-tag-light { font-size: 0.65rem; padding: 0.35rem 0.85rem; }

  .service-item { padding: 1.5rem 1.25rem; }
  .service-number { font-size: 1.75rem; }
  .service-body h3 { font-size: 1.15rem; }
  .service-result { padding: 0.85rem 1rem; font-size: 0.88rem; }

  .guia-full-card { padding: 1.5rem 1.25rem; }
  .guia-big-icon { width: 48px; height: 48px; font-size: 1.2rem; border-radius: 12px; }
  .guia-full-card h3 { font-size: 1.1rem; }
  .guia-full-card p { font-size: 0.88rem; }

  .destino-content { padding: 1.25rem; }
  .destino-content h3 { font-size: 1.1rem; }
  .destino-thumb-play { width: 56px; height: 56px; font-size: 1.2rem; }

  .page-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .page-stats strong { font-size: 1.2rem; }
  .page-stats span { font-size: 0.62rem; }

  /* MK BIG STATS */
  .mk-big-grid { grid-template-columns: 1fr 1fr; }
  .mk-big-stat { padding: 1.75rem 1rem; }
  .mk-big-value { font-size: 2rem; }
  .mk-big-label { font-size: 0.7rem; }
  .mk-big-note { font-size: 0.65rem; }

  /* MK CASES - 2 columnas en móvil pequeño también */
  .mk-cases-grid { gap: 0.5rem !important; grid-template-columns: 1fr 1fr !important; }
  .mk-case-body { padding: 0.65rem; }
  .mk-case-card h4 { font-size: 0.7rem; line-height: 1.2; min-height: 2.2em; }
  .mk-case-tag { font-size: 0.5rem; padding: 0.2rem 0.4rem; }
  .mk-case-metric strong { font-size: 0.82rem; }
  .mk-case-metric span { font-size: 0.5rem; }

  /* CONTACTO */
  .contacto-form-wrapper { padding: 1.5rem 1.25rem; }
  .newsletter-form h3 { font-size: 1.25rem; }
  .form-row input { padding: 0.8rem 0.95rem; }
  .contact-item { padding: 0.85rem 1rem; }

  /* AUDIENCE pequeño */
  .pie-chart { width: 200px; height: 200px; }
  .pie-chart::before { width: 110px; height: 110px; }
  .pie-chart-center strong { font-size: 1.75rem; }
  .age-bar { grid-template-columns: 70px 1fr 45px; gap: 0.5rem; }
  .age-bar-label { font-size: 0.78rem; }
  .age-bar-value { font-size: 0.85rem; }

  /* MODAL pequeño */
  .guias-modal { padding: 1rem; }
  .guias-modal-box { padding: 2rem 1.25rem; }
  .guias-modal h3 { font-size: 1.3rem; }
  .guias-modal-keyword { font-size: 1.1rem; }
  .guias-modal-lead { font-size: 0.92rem; }
  .guias-modal-step { font-size: 0.88rem; }
}
