@charset "UTF-8";
:root {
  --green-900: #0a2236;
  --green-800: #0e3454;
  --green-700: #134668;
  --green-600: #18608c;
  --green-500: #0d82b0;
  --green-400: #00aad5;
  --green-300: #5ccbe9;
  --gold: #f26c25;
  --gold-light: #ff9a4d;
  --cream: #f3f9fc;
  --cream-dark: #e3eef5;
  --white: #ffffff;
  --text-dark: #0e2a3f;
  --text-body: #44606f;
  --text-muted: #8198a6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to bottom, rgba(10, 34, 54, 0.9) 0%, rgba(10, 34, 54, 0.5) 55%, rgba(10, 34, 54, 0) 100%);
}

.nav.scrolled {
  background: rgba(10, 34, 54, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.nav-logo span {
  font-weight: 800;
  font-size: 18px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-500) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--green-400) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-hamburger span:nth-child(1) {
  top: 0;
}

.nav-hamburger span:nth-child(2) {
  top: 11px;
}

.nav-hamburger span:nth-child(3) {
  top: 22px;
}

.nav-hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--green-900);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  top: -12%;
  left: 0;
  right: 0;
  height: 124%;
  background: url("../img/vuelo-globo-teotihuacan-amanecer-panoramica.webp") center/cover no-repeat, var(--green-900);
  will-change: transform;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 34, 54, 0.2) 0%, rgba(10, 34, 54, 0.05) 40%, rgba(10, 34, 54, 0.55) 65%, rgba(10, 34, 54, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 70px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green-800);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--green-900);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green-800);
  padding: 0;
}

.trust-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.trust-item i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== SECTION COMMON ===== */
.section-pad {
  padding: 100px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  flex-wrap: wrap;
}

.section-header-left {
  flex: 1;
  min-width: 280px;
}

.section-header-right {
  flex: 0 0 auto;
  max-width: 400px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  padding-top: 12px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-500);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.15;
}

.section-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===== WHY US / IMAGE CARDS ===== */
.whyus-section {
  background: var(--green-700);
  position: relative;
  overflow: hidden;
}

.whyus-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.whyus-card {
  text-align: center;
  padding: 48px 0;
}

.whyus-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.whyus-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

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

.whyus-card h3, .whyus-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.whyus-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 8px;
}

.whyus-intro {
  padding: 48px 0 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whyus-intro .section-tag {
  color: var(--gold);
}

.whyus-intro .section-title {
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.whyus-intro p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 320px;
}

.whyus-intro .whyus-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whyus-intro .whyus-arrow:hover {
  background: var(--white);
  color: var(--green-800);
}

/* ===== FEATURES GRID ===== */
.features-section {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.feature-card {
  padding: 40px 36px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:nth-child(n+4) {
  border-bottom: none;
}

.feature-card:hover {
  background: var(--green-900);
}

.feature-card:hover * {
  color: var(--white) !important;
}

.feature-card:hover .feature-num {
  color: var(--gold) !important;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-500);
  margin-bottom: 18px;
  display: block;
  transition: color 0.3s;
}

.feature-card h3, .feature-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--green-900);
  transition: color 0.3s;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  transition: color 0.3s;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box .stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== CATALOG / PACKAGES ===== */
.catalog-section {
  background: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.catalog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  background: var(--white);
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.catalog-card.featured {
  border: 2px solid var(--green-600);
}

.catalog-card.featured::before { content: none; }

.catalog-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.catalog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-img img {
  transform: scale(1.08);
}

.catalog-img .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 34, 54, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.catalog-body {
  padding: 28px;
}

.catalog-body h3, .catalog-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 10px;
}

.catalog-body .desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.catalog-features {
  list-style: none;
  margin-bottom: 24px;
}

.catalog-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text-body);
}

.catalog-features li i {
  color: var(--green-500);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.catalog-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-800);
}

.catalog-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.catalog-price-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-catalog:hover {
  background: var(--green-500);
  transform: translateY(-1px);
}

/* Double pricing for featured */
.price-options {
  margin-bottom: 20px;
}

.price-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: var(--cream);
}

.price-option-row .po-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-option-row .po-label i {
  color: var(--green-500);
}

.price-option-row .po-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-800);
}

.price-option-row .po-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--green-900);
  padding: 100px 0;
}

.gallery-section .section-tag {
  color: var(--gold);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 60px;
}

.gal-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-item.tall {
  grid-row: span 2;
}

.gal-item.wide {
  grid-column: span 2;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--green-500);
}

.faq-q {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.faq-q h3, .faq-q h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.faq-q .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--green-700);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 28px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ===== CONTACT / BOOKING ===== */
.contact-section {
  background: var(--green-800);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 108, 37, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-col p, .contact-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.9;
  display: block;
}

.contact-col a:hover {
  color: var(--white);
}

.contact-col .big-text {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-tel:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== POLICIES ===== */
.policies-section {
  background: var(--white);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.policy-card {
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background: var(--cream);
}

.policy-card:hover {
  border-color: var(--green-500);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.policy-card i {
  font-size: 24px;
  color: var(--green-600);
  margin-bottom: 16px;
  display: block;
}

.policy-card h3, .policy-card h4, .policy-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--green-900);
}

.policy-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  padding: 50px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .f-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-brand .f-logo span {
  font-size: 17px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--green-600);
  color: var(--white);
}

.footer-col h2, .footer-col h3, .footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.wa-float i {
  color: var(--white);
  font-size: 26px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 34, 54, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  transition: transform 0.3s;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .whyus-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .whyus-intro {
    padding-left: 0;
    order: -1;
    grid-column: span 2;
    padding-bottom: 20px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card:nth-child(2n) {
    border-right: none;
  }
  .feature-card:nth-child(n+5) {
    border-bottom: none;
  }
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2) {
    border-right: none;
  }
  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
.nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 1001;
    background:
      radial-gradient(120% 70% at 90% 0%, rgba(0,170,213,.20), transparent 58%),
      radial-gradient(120% 70% at 0% 100%, rgba(242,108,37,.15), transparent 56%),
      #0a2236;
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 2px; padding: 96px 30px 28px;
    transform: translateX(100%); opacity: 0; pointer-events: none;
    transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .4s ease;
  }
  .nav-links.active { transform: none; opacity: 1; pointer-events: auto; }
  /* Items grandes con flecha + entrada escalonada */
  .nav-links a:not(.nav-cta):not(.nav-lang) {
    font-family: var(--font-display); font-size: 31px; font-weight: 500; color: #fff;
    text-transform: none; letter-spacing: -.015em;
    padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.09);
    display: block; position: relative;
    opacity: 0; transform: translateX(28px);
    transition: opacity .5s ease, transform .55s cubic-bezier(.16,1,.3,1), color .2s;
  }
  .nav-links a:not(.nav-cta):not(.nav-lang):active { color: var(--green-300); }
  .nav-links.active a:not(.nav-cta):not(.nav-lang) { opacity: 1; transform: none; }
  .nav-links.active a:nth-of-type(1){transition-delay:.10s}
  .nav-links.active a:nth-of-type(2){transition-delay:.16s}
  .nav-links.active a:nth-of-type(3){transition-delay:.22s}
  .nav-links.active a:nth-of-type(4){transition-delay:.28s}
  .nav-links.active a:nth-of-type(5){transition-delay:.34s}
  .nav-links.active a:nth-of-type(6){transition-delay:.40s}
  /* selector idioma como chip arriba a la izquierda */
  .nav-links .nav-lang { position: absolute; top: 30px; left: 30px; opacity: 0; transition: opacity .4s ease .3s; font-size: 13px !important; padding: 9px 16px !important; }
  .nav-links.active .nav-lang { opacity: 1; }
  /* CTA reservar destacado grande al fondo */
  .nav-links .nav-cta {
    margin-top: 26px !important; justify-content: center !important;
    font-size: 16px !important; padding: 18px 24px !important;
    background: var(--green-400) !important; border-radius: 16px !important;
    box-shadow: 0 12px 30px rgba(0,170,213,.4); opacity: 0; transform: translateY(20px);
    transition: opacity .5s ease .42s, transform .5s cubic-bezier(.16,1,.3,1) .42s, background .2s;
  }
  .nav-links.active .nav-cta { opacity: 1; transform: none; }
  /* el hamburger (X) por encima del overlay */
  .nav-hamburger { z-index: 1002; }
  .nav-hamburger.active span { background: #fff; }
  .nav-links.active {
    display: flex;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .container {
    padding: 0 20px;
  }
  .section-pad {
    padding: 70px 0;
  }
  .hero-content {
    padding: 0 20px 50px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .section-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
  }
  .whyus-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .whyus-intro {
    grid-column: span 1;
    padding: 30px 0 10px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    border-right: none !important;
  }
  .feature-card:last-child {
    border-bottom: none;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .gal-item.wide {
    grid-column: span 2;
  }
  .gal-item.tall {
    grid-row: span 1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .policies-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CITABILITY BLOCK (GEO / answers-first) ===== */
.citability { background: var(--cream-dark); padding: 56px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.cite-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 0; }
.cite-item dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-500); margin-bottom: 10px; }
.cite-item dd { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-body); }
.cite-item dd ol { margin: 0; padding-left: 18px; }
.cite-item dd ol li { margin-bottom: 4px; }
@media (max-width: 1024px) { .cite-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cite-grid { grid-template-columns: 1fr; gap: 22px; } .citability { padding: 40px 0; } }


/* ===== LANGUAGE SWITCHER ===== */
.nav-lang { color: var(--white); font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 1px; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; padding: 7px 12px; transition: all 0.3s ease; }
.nav-lang:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.breadcrumb { background: var(--cream); border-bottom: 1px solid rgba(10,34,54,.05); padding: 92px 0 14px; }
.breadcrumb .container { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: .04em; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--text-muted); opacity: .5; }
.breadcrumb a { color: var(--green-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-400); }
.breadcrumb li[aria-current="page"] { color: var(--text-body); }
.lp-intro { max-width: 820px; margin: 0 auto 20px; }
@media (max-width: 768px) { .breadcrumb { padding: 90px 20px 0; } }

/* ===== LOGO IMG (nav + footer) ===== */
.nav-logo img { height: 38px; width: auto; display: block; }
.nav.scrolled .nav-logo img { height: 34px; }
.f-logo img { height: 40px; width: auto; display: block; }
.f-logo { margin-bottom: 16px; }

/* ===== COMPONENTES VISUALES (enriquecimiento de pilares) ===== */
/* Callouts */
.callout { display:flex; gap:16px; padding:20px 24px; border-radius:12px; margin:26px 0; background:var(--cream-dark); border-left:4px solid var(--green-400); }
.callout > i { color:var(--green-400); font-size:24px; flex-shrink:0; line-height:1.4; }
.callout h3, .callout h4 { font-family:var(--font-display); font-size:16px; margin:0 0 4px; color:var(--green-900); }
.callout p { font-size:14px; color:var(--text-body); margin:0; line-height:1.65; }
.callout.callout-tip { border-left-color:var(--gold); background:#fff6ef; }
.callout.callout-tip > i { color:var(--gold); }
.callout.callout-key { border-left-color:var(--green-600); background:#eef6fb; }

/* Tabla comparativa visual */
.viz-table { width:100%; border-collapse:collapse; margin:30px 0; font-size:14px; border-radius:12px; overflow:hidden; box-shadow:0 6px 28px rgba(10,34,54,.07); }
.viz-table th { background:var(--green-900); color:#fff; padding:14px 16px; text-align:left; font-weight:600; }
.viz-table td { padding:13px 16px; border-bottom:1px solid var(--cream-dark); color:var(--text-body); }
.viz-table tr:nth-child(even) td { background:var(--cream); }
.viz-table .yes { color:var(--green-400); font-weight:700; }
.viz-table .no { color:#c0392b; font-weight:700; }
.viz-table td strong { color:var(--green-900); }

/* Timeline de pasos */
.process-steps { display:grid; gap:18px; margin:30px 0; counter-reset:step; }
.process-step { display:flex; gap:18px; align-items:flex-start; }
.process-step .step-num { width:42px; height:42px; border-radius:50%; background:var(--green-400); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-weight:600; flex-shrink:0; }
.process-step .step-num::before { counter-increment:step; content:counter(step); }
.process-step h3, .process-step h4 { font-family:var(--font-display); font-size:17px; color:var(--green-900); margin:0 0 4px; }
.process-step p { font-size:14px; color:var(--text-body); margin:0; line-height:1.65; }

/* Stat cards con icono */
.icon-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:18px; margin:30px 0; }
.icon-stat { text-align:center; padding:26px 16px; border-radius:14px; background:var(--cream); border:1px solid var(--cream-dark); transition:all .3s; }
.icon-stat:hover { box-shadow:0 8px 28px rgba(10,34,54,.08); transform:translateY(-3px); }
.icon-stat > i { font-size:28px; color:var(--green-400); margin-bottom:10px; display:block; }
.icon-stat .num { font-family:var(--font-display); font-size:30px; font-weight:600; color:var(--green-800); line-height:1; }
.icon-stat .lbl { font-size:13px; color:var(--text-muted); margin-top:6px; }

/* Split imagen + texto */
.split-feature { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; margin:44px 0; }
.split-feature .sf-img img { border-radius:16px; width:100%; box-shadow:0 12px 40px rgba(10,34,54,.12); }
.split-feature.reverse .sf-img { order:2; }
@media(max-width:768px){ .split-feature{grid-template-columns:1fr; gap:24px} .split-feature.reverse .sf-img{order:0} .viz-table{font-size:12.5px} .viz-table th,.viz-table td{padding:10px} }

/* ===== ANIMACIONES PREMIUM (conversión + permanencia) ===== */
/* View Transitions API — navegación tipo app entre las páginas (nativo, 0KB) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtFadeOut .28s ease both; }
::view-transition-new(root) { animation: vtFadeIn .34s ease both; }
@keyframes vtFadeOut { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vtFadeIn { from { opacity: 0; transform: translateY(10px); } }
/* el logo y la nav persisten suave entre páginas */
.nav-logo img { view-transition-name: brand-logo; }

/* Micro-interacciones: hover-lift premium en tarjetas */
.catalog-card, .feature-card, .policy-card, .icon-stat, .whyus-card { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
.catalog-card:hover { transform: translateY(-8px) scale(1.012); box-shadow: 0 26px 60px rgba(10,34,54,.16); }
.feature-card:hover { transform: translateY(-4px); }
.policy-card:hover { transform: translateY(-5px); }

/* CTA con glow en hover */
.nav-cta, .btn-catalog, .btn-primary, .btn-wa { position: relative; }
.nav-cta:hover, .btn-catalog:hover { box-shadow: 0 8px 24px rgba(0,170,213,.45); }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(242,108,37,.4); }

/* WhatsApp flotante con pulso sutil (atrae sin molestar) */
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.35); } 50% { box-shadow: 0 6px 24px rgba(37,211,102,.35), 0 0 0 12px rgba(37,211,102,0); } }
.wa-float { animation: waPulse 2.8s ease-in-out infinite; }

/* Badge "Más solicitado" con shimmer */

@keyframes badgeShimmer { to { background-position: -200% 0; } }

/* Count-up: evita parpadeo inicial */
.stat-number, .icon-stat .num { font-variant-numeric: tabular-nums; }

/* Respetar usuarios con movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; transition: none !important; }
  .wa-float { animation: none !important; }
  @view-transition { navigation: none; }
}

/* ===== EFECTOS WOW (Aceternity-style, vanilla) ===== */
/* Reveal dramático (mejora el .reveal existente) */
.reveal { opacity: 0; transform: translateY(48px) scale(.965); filter: blur(6px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* Tarjetas 3D con spotlight que sigue el cursor */
.tilt { transform-style: preserve-3d; transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease; will-change: transform; }
.tilt > * { position: relative; z-index: 1; }
.spotlight { position: relative; }
.spotlight::after { content:""; position:absolute; inset:0; border-radius:inherit; background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(0,170,213,.16), transparent 60%); opacity:0; transition:opacity .35s ease; pointer-events:none; z-index:2; }
.spotlight:hover::after { opacity:1; }

/* Hero text reveal: líneas que suben con clip */
.hero h1 .line { display:block; overflow:hidden; }
.hero h1 .line > span { display:inline-block; transform: translateY(110%); }
.hero.reveal-ready h1 .line > span { transform: translateY(0); transition: transform 1s cubic-bezier(.16,1,.3,1); }
.hero.reveal-ready h1 .line:nth-child(2) > span { transition-delay:.12s; }
.hero.reveal-ready h1 .line:nth-child(3) > span { transition-delay:.24s; }
.hero-tag, .hero-sub, .hero-actions { opacity:0; transform:translateY(20px); }
.hero.reveal-ready .hero-tag { opacity:1; transform:none; transition:all .8s ease .35s; }
.hero.reveal-ready .hero-sub { opacity:1; transform:none; transition:all .8s ease .5s; }
.hero.reveal-ready .hero-actions { opacity:1; transform:none; transition:all .8s ease .65s; }

/* Aurora animada sutil en el overlay del hero */
.hero-overlay::after { content:""; position:absolute; inset:0; background: radial-gradient(800px circle at 20% 30%, rgba(0,170,213,.18), transparent 50%), radial-gradient(700px circle at 80% 70%, rgba(242,108,37,.14), transparent 50%); mix-blend-mode: screen; animation: auroraFloat 14s ease-in-out infinite alternate; pointer-events:none; }
@keyframes auroraFloat { 0%{transform:translate3d(0,0,0) scale(1)} 100%{transform:translate3d(0,-3%,0) scale(1.08)} }

/* Botones magnéticos: transición suave del transform que setea el JS */
.magnetic { transition: transform .25s cubic-bezier(.2,.7,.3,1); will-change: transform; }

/* Count-up: evitar salto de layout */
.counting { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1!important; transform:none!important; filter:none!important; }
  .hero h1 .line > span, .hero-tag, .hero-sub, .hero-actions { transform:none!important; opacity:1!important; }
  .hero-overlay::after { animation:none!important; }
}

/* Breadcrumb oculto en tours t26 (hero full-bleed; el schema BreadcrumbList queda para SEO) */
.t26 nav.breadcrumb{display:none;}

/* Red de seguridad del hero: revela aunque el JS falle */
@keyframes heroSafety{to{opacity:1;transform:none;}}
.hero h1 .line>span{animation:heroSafety .01s linear 1.4s forwards;}
.hero-tag,.hero-sub,.hero-actions{animation:heroSafety .01s linear 1.4s forwards;}
.hero.reveal-ready h1 .line>span,.hero.reveal-ready .hero-tag,.hero.reveal-ready .hero-sub,.hero.reveal-ready .hero-actions{animation:none;}

/* Encabezados de sección para lectores de pantalla / crawlers (jerarquía correcta sin alterar diseño) */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
