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

:root{
  --bg-dark: #0A2540;
  --bg-mid: #0E3460;
  --bg-darker: #060A10;
  --bg-card: #102f52;
  --accent: #00B4D8;
  --accent-light: #48CAE4;
  --text: #ffffff;
  --text-dark: #000000;
  --muted: rgba(255,255,255,0.72);
  --muted-soft: rgba(255,255,255,0.55);
  --light-bg: #F4F8FC;
  --light-text: #0A2540;
  --light-muted: #6F8196;
  --border-light: #D8E4EF;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
}

h1,h2,h3,h4,.logo-text,.section-title,.promo-title,.tour-name,.dest-name,.blog-title{
  font-family: 'Cormorant Garamond', serif;
}

/* NAV */
.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-dark);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}
.logo-img{
  width: 100px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-mark{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logo-text{
  display: flex;
  flex-direction: column;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.logo-text span{
  font-family: 'Outfit', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a{
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.nav-links a:hover{
  color: var(--accent);
}

.nav-btn{
  background: var(--accent);
  color: var(--text-dark) !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.burger{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span{
  width: 25px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Oscurecer las fotos para que el texto sea legible */
.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 16, 0.55);
  z-index: 1;
}

.hero-geo{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-geo::before{
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.18) 0%, transparent 70%);
  top: -120px;
  right: -120px;
}

.hero-geo::after{
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,89,168,0.22) 0%, transparent 70%);
  bottom: -90px;
  left: -90px;
}

.hero-grid{
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,180,216,0.35);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.8rem;
  background: rgba(0,180,216,0.08);
}

.hero-geo  { z-index: 2; }
.hero-grid { z-index: 2; }
.hero-content { z-index: 3; }
.hero-scroll  { z-index: 3; }

.hero h1{
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

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

.hero p{
  font-size: 1.05rem;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.82);
  max-width: 650px;
  line-height: 1.8;
}

.hero-btns{
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline{
  display: inline-block;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,180,216,0.28);
}

.btn-primary:hover{
  transform: translateY(-3px);
}

.btn-outline{
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--text);
}

.btn-outline:hover{
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,180,216,0.08);
  transform: translateY(-3px);
}

.hero-scroll{
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line{
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{opacity:.4}
  50%{opacity:1}
}

/* STATS */
.stats-bar{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item{
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.stat-num{
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 700;
}

.stat-label{
  margin-top: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* SHARED */
section{
  padding: 6rem 5%;
}

.section{
  padding: 6rem 5%;
}

.section-tag{
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.section-title{
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  color: var(--light-text);
}

.section-title em{
  color: #1559A8;
  font-style: italic;
}

.section-sub{
  margin-top: 1rem;
  color: var(--light-muted);
  line-height: 1.8;
  max-width: 560px;
}

.link-arrow{
  color: #1559A8;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

/* PROMOS */
.promos{
  padding: 6rem 5%;
  background: var(--light-bg);
}

.promos-header{
  text-align: center;
  margin-bottom: 2.8rem;
}

.promos .section-title{
  color: var(--light-text);
}

.promos .section-title em{
  color: var(--accent);
}

.promos .section-sub{
  color: rgba(255,255,255,0.7);
  margin-left: auto;
  margin-right: auto;
}

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



.promo-card{
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(0,180,216,0.18);
  padding: 24px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.promo-card:hover{
  transform: translateY(-5px);
  background: var(--bg-card);
  border-color: var(--accent);
}

.promo-icon{
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.promo-badge{
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.65rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-title{
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1.1;
}

.promo-desc{
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

/* DESTINOS */
.destinations{
  background: var(--light-bg);
}

.dest-header{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.dest-card{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 320px;
  cursor: pointer;
}

.dest-card.featured{
  grid-row: span 2;
  min-height: 660px;
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;        /* ← esto es lo que falta */
  background-position: center;   /* ← y esto para centrar la imagen */
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-bg{
  transform: scale(1.06);
}

.dest-card-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,10,16,0.9) 0%, rgba(6,10,16,0.15) 60%, transparent 100%);
}

.dest-card-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  z-index: 2;
}

.dest-region{
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.dest-name{
  font-size: 1.7rem;
  color: var(--text);
  line-height: 1.1;
}

.dest-card.featured .dest-name{
  font-size: 2.3rem;
}

.dest-info{
  display: flex;
  gap: 0.9rem;
  margin-top: 0.7rem;
}

.dest-duration,
.dest-rating{
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

.dest-arrow{
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,180,216,0.16);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--accent);
}

/* TOURS */
.tours{
  background: var(--light-bg);
}

.tours-header{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.tour-card{
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10,37,64,0.12);
}

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

.tour-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;        /* ← expande la imagen al contenedor */
  background-position: center;   /* ← la centra */
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

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

.tour-tag{
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.tour-body{
  padding: 1.4rem;
}

.tour-meta{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--light-muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.tour-name{
  font-size: 1.45rem;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.tour-desc{
  color: var(--light-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tour-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.tour-price{
  font-size: 1.55rem;
  color: var(--light-text);
}

.tour-price small{
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--light-muted);
}

.tour-btn{
  background: var(--bg-dark);
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ABOUT */
.about-section{
  background: var(--bg-dark);
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-left .section-title{
  color: var(--text);
}

.about-left .section-title em{
  color: var(--accent);
}

.about-left .section-sub{
  color: rgba(255,255,255,0.72);
}

.mvv-grid{
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.mvv-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,180,216,0.16);
  border-radius: 10px;
  padding: 1.4rem;
}

.mvv-label{
  color: var(--accent);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.mvv-text{
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}

.about-visual-card{
  background: #ffffffd2;
  border: 1px solid rgba(0,180,216,0.18);
  border-radius: 14px;
  padding: 2rem;
}

.about-big{
  font-size: 6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.about-values{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.val-item{
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.val-dot{
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.val-text{
  color: var(--bg-dark);
  font-weight: 600;
}

.val-sub{
  color: var(--light-text);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.about-contact{
  margin-top: 2rem;
  padding: 1.3rem;
  border: 1px solid rgba(0,180,216,0.18);
  background: var(--bg-card);
  border-radius: 10px;
}

.about-contact h4{
  color: var(--light-bg);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-line{
  color: var(--light-bg);
  margin-bottom: 0.45rem;
  line-height: 1.5;
}

.contact-line strong{
  color: var(--accent);
}

/* TESTIMONIALS */
.testimonials{
  background: var(--light-bg);
}

.testimonials .section-title{
  color: var(--bg-dark);
}

.testimonials .section-title em{
  color: #1559A8;
}

.testimonials .section-sub{
  color: var(--bg-dark)
}

.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card{
  background: var(--bg-card);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 12px;
  padding: 1.7rem;
}

.testi-stars{
  color: var(--accent);
  margin-bottom: 1rem;
}

.testi-text{
  color: var(--light-bg);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testi-author{
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.testi-avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testi-name{
  color: var(--text);
  font-weight: 600;
}

.testi-trip{
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* CTA */
.cta-banner{
  position: relative;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 60%, var(--bg-mid) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-grid-deco{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-banner .section-title{
  color: var(--text);
}

.cta-banner .section-title em{
  color: var(--accent);
}

.cta-banner .section-sub{
  color: rgba(255,255,255,0.72);
  margin-left: auto;
  margin-right: auto;
}

.cta-form{
  display: flex;
  max-width: 520px;
  margin: 2rem auto 0;
  border: 1px solid rgba(0,180,216,0.22);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.cta-input{
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 1rem 1.2rem;
  font-family: 'Outfit', sans-serif;
}

.cta-input::placeholder{
  color: rgba(255,255,255,0.5);
}

.cta-submit{
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-dark);
  padding: 1rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

.cta-phones{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-phone{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-weight: 600;
}

.cta-social{
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,180,216,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-icon svg{
  width: 26px;
  height: 26px;
  fill: white;
}

.cta-icon:hover{
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Colores por marca */
.cta-icon.whatsapp:hover{
  background: #25D366;
}

.cta-icon.facebook:hover{
  background: #1877F2;
}

.cta-icon.instagram:hover{
  background: linear-gradient(135deg,#feda75,#d62976,#962fbf,#4f5bd5);
}

/* BLOG */
.blog{
  background: var(--light-bg);
}

.blog-header{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.blog-card{
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}

.blog-img{
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-img-bg{
  position: absolute;
  inset: 0;
}

.blog-cat{
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--bg-dark);
  color: var(--text);
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-body{
  padding: 1.4rem;
}

.blog-date{
  color: var(--light-muted);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.blog-title{
  color: var(--light-text);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.blog-excerpt{
  color: var(--light-muted);
  line-height: 1.7;
}

.blog-read{
  display: inline-block;
  margin-top: 0.9rem;
  color: #1559A8;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
}

/* FOOTER */
footer{
  background: var(--bg-darker);
  color: rgba(255,255,255,0.75);
  padding: 4rem 5% 2rem;
}

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

.footer-logo-wrap{
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-mark{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.footer-logo-text{
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.footer-brand p{
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4{
  color: var(--text);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

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

.footer-col li{
  margin-bottom: 0.6rem;
}

.footer-col a{
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

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

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links a{
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transicion);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .promos-grid,
  .dest-grid,
  .tours-grid,
  .testi-grid,
  .blog-grid{
    grid-template-columns: 1fr 1fr;
  }

  .dest-card.featured{
    grid-row: auto;
    min-height: 320px;
  }

  .about-grid,
  .footer-top{
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar{
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2){
    border-right: none;
  }
}

@media (max-width: 768px){
  .nav-links{
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    padding: 100px 20px 20px;
    text-align: center;
    justify-content: center;
  }

  .nav-links.open{
    display: flex;
  }

  .burger{
    display: flex;
    z-index: 1001;
  }

  .hero h1{
    font-size: 2.4rem;
  }

  .cta-form{
    flex-direction: column;
  }

  .footer-top,
  .about-grid,
  .promos-grid,
  .dest-grid,
  .tours-grid,
  .testi-grid,
  .blog-grid{
    grid-template-columns: 1fr;
  }

  .stats-bar{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px){
  section,
  .section,
  .promos{
    padding: 4rem 4%;
  }

  nav{
    padding: 1rem 4%;
  }

  .hero{
    padding: 0 4%;
  }

  .hero-badge{
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero h1{
    font-size: 2rem;
  }

  .stat-num{
    font-size: 1.8rem;
  }

  .logo-text{
    display: none;
  }


  .whatsapp-float {
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  }
}
.testi-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: #2bbcd3;
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}
.testi-avatar {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: #20c7e8;

  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-avatar img {
  width: 100% !important;
  height: 100% !important;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #20c7e8;
}

.testi-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  max-width: none !important;
}

.testi-info {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-weight: 600;
}

.testi-trip {
  font-size: 13px;
  opacity: 0.8;
}
/* ===== FIX DEFINITIVO TESTIMONIOS ===== */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.testi-card{
  position:relative;
  overflow:hidden;
}

.testi-text{
  margin:18px 0 0;
}

.testi-author{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:22px;
}

.testi-info{
  display:flex;
  flex-direction:column;
}

.testi-avatar{
  width:56px !important;
  height:56px !important;
  min-width:56px !important;
  max-width:56px !important;
  min-height:56px !important;
  max-height:56px !important;
  border-radius:50% !important;
  overflow:hidden !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-shrink:0 !important;
  position:relative !important;
}

.testi-avatar img{
  width:56px !important;
  height:56px !important;
  min-width:56px !important;
  max-width:56px !important;
  min-height:56px !important;
  max-height:56px !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
  position:static !important;
  inset:auto !important;
  transform:none !important;
  float:none !important;
  margin:0 !important;
  padding:0 !important;
  border:none !important;
}
.testi-avatar img{
  all: unset;
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}