/* ============================================================
   TocaMex Tours — Global Stylesheet
   Paleta: Azul Talavera #153A52 | Rosa Mexicano #E4007C
            Terracota #D96C4E | Blanco Garza #FAFAFA
   ============================================================ */

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

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:      #153A52;
  --rosa:      #E4007C;
  --terracota: #D96C4E;
  --blanco:    #FAFAFA;
  --gris-suave:#F2EDE8;
  --gris-texto:#4A3F35;
  --oro:       #C9973A;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --shadow-md: 0 8px 32px rgba(21,58,82,.13);
  --shadow-lg: 0 16px 56px rgba(21,58,82,.22);
  --radius:    12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--blanco);
  color: var(--gris-texto);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--azul);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rosa);
  display: block;
  margin-bottom: .6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: .04em;
}

.btn-primary {
  background: var(--rosa);
  color: #fff;
  border-color: var(--rosa);
}
.btn-primary:hover {
  background: transparent;
  color: var(--rosa);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228,0,124,.3);
}

.btn-outline {
  background: transparent;
  color: var(--azul);
  border-color: var(--azul);
}
.btn-outline:hover {
  background: var(--azul);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--oro);
  color: #fff;
  border-color: var(--oro);
}
.btn-gold:hover {
  background: transparent;
  color: var(--oro);
  transform: translateY(-2px);
}

/* ---------- Animate on Scroll ---------- */
.aos { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-left  { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.aos-left.visible { opacity: 1; transform: translateX(0); }
.aos-right { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.aos-right.visible { opacity: 1; transform: translateX(0); }

/* ---------- Decorative pattern strip ---------- */
.pattern-strip {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--rosa) 0px, var(--rosa) 20px,
    var(--terracota) 20px, var(--terracota) 40px,
    var(--oro) 40px, var(--oro) 60px,
    var(--azul) 60px, var(--azul) 80px
  );
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(21,58,82,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  /* Use will-change only on compositable properties — no layout reflow */
  will-change: box-shadow;
  transition: box-shadow .3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,.38);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.brand-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

.brand-logo-text span { color: var(--rosa); }

.brand-tagline {
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rosa);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--rosa) !important;
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #c4006a !important; transform: translateY(-1px); }

/* ---------- Disabled / "Próximamente" state ---------- */
.is-disabled {
  opacity: .55;
  cursor: not-allowed !important;
  pointer-events: none;
  filter: grayscale(.35);
}
.is-disabled:hover { transform: none !important; box-shadow: none !important; }
.disabled-tag {
  display: inline;
  font-size: .62em;
  font-weight: 500;
  letter-spacing: .04em;
  opacity: .85;
  margin-left: .4em;
  white-space: nowrap;
}
.nav-cta.is-disabled { white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--azul);
  padding: 1.5rem 5%;
  gap: 1.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: .8rem;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--rosa); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--azul);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: .88rem;
  margin-top: .8rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-brand .brand-logo-text { color: #fff; font-size: 1.3rem; }

.footer-col h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--rosa); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .7rem;
  font-size: .88rem;
}

.footer-contact-item svg { flex-shrink: 0; color: var(--rosa); }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--rosa);
  background: var(--rosa);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.7);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.75); }
}

.whatsapp-float img {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: block;
}

/* ============================================================
   HERO (shared base)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--azul);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .38;
  filter: saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,58,82,.92) 0%, rgba(21,58,82,.6) 60%, rgba(217,108,78,.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--rosa);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--terracota);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.02rem;
  color: #7a6e66;
  max-width: 560px;
  margin: 0 auto;
}

.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--rosa), var(--terracota));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   INDEX — MISION / VISION / VALORES
   ============================================================ */
.identidad { background: var(--gris-suave); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  border-top: 4px solid var(--rosa);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card:nth-child(2) { border-top-color: var(--terracota); }

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.mv-card p { color: #6a5f57; line-height: 1.8; }

/* Valores grid */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.valor-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rosa), var(--terracota));
}

.valor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.valor-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, rgba(228,0,124,.12), rgba(217,108,78,.12));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

.valor-icon svg { width: 28px; height: 28px; }

.valor-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: .6rem;
  color: var(--azul);
}

.valor-card p { font-size: .82rem; color: #7a6e66; line-height: 1.6; }

/* ============================================================
   INDEX — DIFERENCIADORES
   ============================================================ */
.diferenciadores {
  background: var(--azul);
  position: relative;
  overflow: hidden;
}

.diferenciadores::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(228,0,124,.12) 0%, transparent 70%);
  pointer-events: none;
}

.diferenciadores .section-header h2,
.diferenciadores .section-header p { color: #fff; }
.diferenciadores .section-header p { color: rgba(255,255,255,.65); }
.diferenciadores .divider { background: linear-gradient(90deg, var(--terracota), var(--oro)); }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dif-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--transition);
}

.dif-item:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(4px);
}

.dif-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rosa), var(--terracota));
  display: flex; align-items: center; justify-content: center;
}

.dif-icon svg { width: 24px; height: 24px; stroke: #fff; }

.dif-item h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.dif-item p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.65; }

/* ============================================================
   TOURS PAGE
   ============================================================ */
.tours-hero {
  min-height: 55vh;
  padding-top: 70px;
}

.tours-section { background: var(--gris-suave); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.tour-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tour-card-img img,
.tour-card-img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.tour-card-img .img-placeholder {
  display: flex; align-items: center; justify-content: center;
}

.tour-card:hover .tour-card-img img { transform: scale(1.06); }

.tour-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--rosa);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 50px;
}

.tour-card-body { padding: 2rem; }

.tour-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.tour-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: #888;
  font-weight: 500;
}

.tour-meta-item svg { width: 14px; height: 14px; stroke: var(--terracota); }

.tour-excerpt { font-size: .9rem; color: #6a5f57; line-height: 1.7; margin-bottom: 1.5rem; }

.tour-expand-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--rosa);
  background: none;
  border: none;
  cursor: pointer;
  transition: gap var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.tour-expand-btn:hover { gap: .9rem; }
.tour-expand-btn svg { transition: transform var(--transition); }
.tour-expand-btn.expanded svg { transform: rotate(180deg); }

/* Tour detail panel */
.tour-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.4,0,.2,1), padding .4s ease;
  border-top: 1px solid transparent;
}

.tour-detail.open {
  max-height: 900px;
  border-top-color: #eee;
  padding: 1.5rem 2rem 2rem;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: .7rem;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .87rem;
  color: #5a4f48;
  margin-bottom: .5rem;
  line-height: 1.5;
}

.detail-list li::before {
  content: '◆';
  color: var(--terracota);
  font-size: .5rem;
  margin-top: .3rem;
  flex-shrink: 0;
}

.detail-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gris-suave);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}

.detail-price-label { font-size: .78rem; color: #888; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.detail-price-amount { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--azul); }
.detail-price-amount span { font-size: .9rem; color: #888; font-family: 'Montserrat', sans-serif; font-weight: 400; }

/* Custom tours section — background-color explicit to avoid aztec-bg override */
.custom-tours {
  background-color: var(--azul);
  background-image: linear-gradient(135deg, var(--azul) 0%, #0d2535 100%);
  text-align: center;
  padding: 5rem 0;
  position: relative;
}

.custom-tours h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.custom-tours p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 2.5rem; }
.custom-tours .section-label { color: var(--terracota) !important; }

/* ============================================================
   CAROUSEL DE EXPERIENCIAS
   ============================================================ */
.carousel-section {
  background: var(--azul);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.carousel-section .section-header h2 { color: #fff; }
.carousel-section .section-header p  { color: rgba(255,255,255,.6); }

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  user-select: none;
}

.carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  cursor: grab;
}

.carousel-track:active { cursor: grabbing; }

.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  margin-right: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 280px;
  flex-shrink: 0;
}

.carousel-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.carousel-slide:hover .carousel-slide-img { transform: scale(1.05); }

.carousel-slide-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: transform .5s ease;
}

.carousel-slide:hover .carousel-slide-placeholder { transform: scale(1.04); }

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.carousel-slide-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: .3rem;
}

.carousel-overlay h4 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: .2rem;
}

.carousel-overlay p {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--rosa);
  border-color: var(--rosa);
  transform: scale(1.1);
}

.carousel-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.carousel-dots {
  display: flex;
  gap: .5rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--rosa);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .carousel-slide { flex: 0 0 calc(50% - .75rem); }
}

@media (max-width: 560px) {
  .carousel-slide { flex: 0 0 calc(85% - .5rem); height: 220px; }
}

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */
.newsletter-hero { min-height: 50vh; padding-top: 70px; }

.revista { background: var(--gris-suave); }

.revista-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Article cards */
.article-featured {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.article-featured-img {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.article-featured-img img,
.article-featured-img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}

.article-cat {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  background: var(--rosa);
  color: #fff;
}

.article-body { padding: 2rem; }
.article-body h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.article-body p { color: #6a5f57; font-size: .9rem; line-height: 1.8; margin-bottom: 1.2rem; }

.article-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: .78rem; color: #aaa; margin-bottom: 1rem;
}
.article-meta span { display: flex; align-items: center; gap: .3rem; }

.read-more {
  font-size: .85rem; font-weight: 600; color: var(--rosa);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: .7rem; }

.articles-list { display: flex; flex-direction: column; gap: 1.5rem; }

.article-mini {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(21,58,82,.08);
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-mini:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.article-mini-img {
  height: 100%;
  min-height: 100px;
  overflow: hidden;
}

.article-mini-img img,
.article-mini-img .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}

.article-mini-body { padding: 1rem 1.2rem; }
.article-mini-body .article-cat {
  position: static;
  display: inline-block;
  margin-bottom: .5rem;
  font-size: .62rem;
}
.article-mini-body h4 { font-size: .95rem; margin-bottom: .4rem; line-height: 1.3; }
.article-mini-body p { font-size: .78rem; color: #888; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }

.sidebar-widget {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
}

.sidebar-widget h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--gris-suave);
}

/* Trivia items */
.trivia-item {
  display: flex;
  gap: .8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gris-suave);
}
.trivia-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.trivia-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--rosa), var(--terracota));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; color: #fff;
}

.trivia-item p { font-size: .83rem; color: #5a4f48; line-height: 1.55; }

/* Subscribe form */
.subscribe-section {
  background: linear-gradient(135deg, var(--azul), #0d2535);
  padding: 5rem 0;
}

.subscribe-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-box h2 { color: #fff; font-size: 2.2rem; margin-bottom: 1rem; }
.subscribe-box p { color: rgba(255,255,255,.65); margin-bottom: 2rem; }

.subscribe-form {
  display: flex;
  gap: .8rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .5rem .5rem .5rem 1.5rem;
}

.subscribe-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
}

.subscribe-form input::placeholder { color: rgba(255,255,255,.4); }

.subscribe-form button {
  background: var(--rosa);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .8rem 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.subscribe-form button:hover { background: #c4006a; }

.subscribe-note { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .valores-grid { grid-template-columns: repeat(3, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .revista-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .mv-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .subscribe-form {
    flex-direction: column;
    border-radius: 14px;
    padding: 1rem;
    gap: .6rem;
  }
  .subscribe-form input { padding: .5rem; }
  .subscribe-form button { border-radius: 8px; }

  .article-mini { grid-template-columns: 1fr; }
  .article-mini-img { height: 160px; }
}

@media (max-width: 480px) {
  .valores-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
  section { padding: 4rem 0; }
  .brand-tagline { display: none; }
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
}

/* ============================================================
   DECORATIVE — Mexican Huichol border pattern
   ============================================================ */
.huichol-border {
  position: relative;
}
.huichol-border::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--rosa) 0, var(--rosa) 12px,
    var(--terracota) 12px, var(--terracota) 24px,
    var(--oro) 24px, var(--oro) 36px,
    var(--azul) 36px, var(--azul) 48px
  );
}

/* Hero mosaic decoration */
.hero-mosaic {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  display: none;
  z-index: 1;
}
@media (min-width: 1024px) { .hero-mosaic { display: block; } }

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.shape-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(228,0,124,.15) 0%, transparent 70%);
  top: 10%; right: 8%;
}
.shape-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(217,108,78,.12) 0%, transparent 70%);
  bottom: 15%; left: 5%;
}

/* Image placeholder style */
.img-placeholder {
  background: linear-gradient(135deg, var(--azul) 0%, #1a4f70 50%, var(--terracota) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.img-placeholder svg { width: 40px; height: 40px; opacity: .5; }

/* Aztec pattern overlay */
.aztec-bg {
  background-image:
    radial-gradient(circle at 25px 25px, rgba(255,255,255,.04) 2px, transparent 0),
    radial-gradient(circle at 75px 75px, rgba(255,255,255,.04) 2px, transparent 0);
  background-size: 100px 100px;
}

/* Quote highlight */
.quote-highlight {
  background: linear-gradient(135deg, rgba(228,0,124,.07), rgba(217,108,78,.07));
  border-left: 4px solid var(--rosa);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--azul);
  line-height: 1.7;
}

/* Number stat */
.stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--rosa);
  display: block;
  line-height: 1;
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase; margin-top: .3rem; }
