/* styles.css */
:root {
  --bg: #071a2e;
  --card: #0c2542;
  --soft: #0f2f52;

  --text: #f2f7ff;
  --muted: rgba(242, 247, 255, 0.897);

  --line: rgba(255, 255, 255, .12);

  --accent: #070f11;
  /* turquesa */
  --accent2: #d4a84f;
  /* dorado */

  --shadow: 0 24px 60px rgba(0, 0, 0, .35);
  --radius: 22px;
  --radius2: 16px;
  --container: 1120px;
  --t: .25s ease;

  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe5d;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(77, 214, 255, .12), transparent 60%),
    radial-gradient(900px 650px at 90% 0%, rgba(124, 247, 200, .10), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.muted {
  color: var(--muted)
}

.small {
  font-size: .9rem
}

/* Topbar */
.topbar {
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.topbar-left {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
}

.dot {
  opacity: .4
}

.topbar-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.toplink {
  color: var(--muted);
  font-weight: 700
}

.toplink:hover {
  color: var(--text)
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 16, 24, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 174, 226, 0.22), rgba(124, 247, 200, .18));
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.brand-name {
  font-weight: 900;
  letter-spacing: .2px
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px
}

.nav a {
  color: var(--muted);
  font-weight: 700
}

.nav a:hover {
  color: var(--text)
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(77, 214, 255, .35);
  background: linear-gradient(135deg, rgba(77, 214, 255, .18), rgba(124, 247, 200, .10));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
  transition: transform var(--t), filter var(--t);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05)
}

.btn:active {
  transform: translateY(0px)
}

.btn-ghost {
  background: #c7a155;
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--text);
}

.btn-small {
  padding: 10px 14px;
  font-size: .92rem
}

.btn-full {
  width: 100%;
  margin-top: 12px
}

.btn-wa {
  border-color: rgba(49, 207, 107, 0.45);
  background: linear-gradient(135deg, rgba(37, 211, 102, .20), rgba(124, 247, 200, .10));
}

/* Mobile nav */
.nav-toggle {
  display: none
}

.nav-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  background: rgba(255, 255, 255, .04);
}

.nav-btn span {
  width: 18px;
  height: 2px;
  background: var(--text);
  opacity: .9;
  border-radius: 99px;
}

@media (max-width: 860px) {
  .nav-btn {
    display: flex
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    background: rgba(15, 26, 51, .92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    display: grid;
    gap: 10px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow);
  }

  .nav a,
  .nav .btn {
    padding: 12px 12px;
    border-radius: 14px
  }

  .nav a {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06)
  }

  .nav .btn {
    width: 100%
  }

  #navToggle:checked~.nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
  }
}

/* Hero */
.hero {
  position: relative;
  background-image:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.88) 35%,
      rgba(255, 255, 255, 0.65) 60%,
      rgba(255, 255, 255, 0.35) 100%),
    url("img/inicio.png");
  /* tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  color: #0b0f14;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.hero .lead,
.hero p {
  color: #1f2937;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .10);
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;

 background-image:
  linear-gradient(
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.10)
  ),
  url("../img/inicio.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .10);
  color: rgba(0, 0, 0, .62);
  font-weight: 800;
  width: fit-content;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2.0rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  color: #111;
}

.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: #333;
  max-width: 60ch;
  font-size: 1.05rem
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px
}

.stat {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .75);
}

.stat-num {
  font-weight: 900;
  font-size: 1.12rem;
  color: #111
}

.stat-txt {
  color: #444;
  font-size: .9rem
}

/* Hero card */
.hero-card {
  background: linear-gradient(180deg, rgba(15, 26, 51, .88), rgba(15, 26, 51, .70));
  border: 1px solid rgba(253, 248, 248, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.hero-card .muted{
  color: #ffffff;
  opacity: 0.9;
}


.hero-card h3 {
  margin: 0 0 6px
}

.hint {
  display: block;
  margin-top: 10px;
  color: rgba(234, 240, 255, .6)
}

.quick {
  display: grid;
  gap: 10px;
  margin: 14px 0 8px
}

.quick-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: transform var(--t), background var(--t);
}

.quick-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .05)
}

.qi-ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 214, 255, .22);
  background: rgba(77, 214, 255, .10);
}

/* Sections */
.section {
  padding: 54px 0
}

.section-soft {
  position: relative;
  background-image:
    linear-gradient(
      rgba(8,20,40,.88),
      rgba(8,20,40,.88)
    ),
    url("img/islas.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}


.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

/* Small helpers */
.mt {
  margin-top: 28px
}

.mt-sm {
  margin-top: 16px
}

/* Block head */
.block-head {
  margin: 18px 0 14px
}

.block-title {
  margin: 0 0 6px;
  font-size: 1.15rem
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Tablet / Laptop: 2 columnas */
@media (min-width: 760px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Solo pantallas muy grandes: 3 columnas */
@media (min-width: 1400px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Cards */
.card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(15, 26, 51, .70), rgba(15, 26, 51, .55));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
  transition: transform var(--t), border-color var(--t);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 214, 255, .30)
}

.card-mini {
  overflow: visible
}

.card-mini:hover {
  transform: translateY(-3px)
}

.card-media {
  height: 190px;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* ===== IMÁGENES DE TOURS ===== */
.media-1 {
  background-image: url("../img/fotoinicial.png");
}

/* 7 bahías */
.media-2 {
  background-image: url("../img/pesca.png");
}

/* pesca */
.media-3 {
  background-image: url("../img/tur4.png");
}

/* ballenas */

/* Sugeridas (si no tienes aún, pon un placeholder) */
.media-cascadas {
  background-image: url("../img/cascadas.png");
}

/* cascadas */
.media-6 {
  background-image: url("../img/ejemplo.png");
}

/* manglares */
.media-7 {
  background-image: url("../img/islas.png");
}

/* pluma hidalgo */
.media-9 {
  background-image: url("img/islas.png");
}

/* ruta eco */

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 900;
  background: rgba(11, 18, 32, .60);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 14px
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 1.06rem
}



.meta-soft {
  color: rgba(234, 240, 255, .65)
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.price {
  font-weight: 900;
  font-size: 1.14rem
}

.tip {
  margin-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, .12);
  padding-top: 10px;
}

.note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}

.gallery{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px){ .gallery{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px){ .gallery{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .gallery{ grid-template-columns: 1fr; } }

.g{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  aspect-ratio: 4 / 3;
}

/* Overlay sutil (detrás de la imagen) */
.g::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.40));
  opacity:.18;
  pointer-events:none;
  z-index:0;
}

.g img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.g:hover img{
  transform: scale(1.06);
}


/* Overlay sutil */
.g::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .05),
    rgba(0, 0, 0, .40)
  );
  opacity: .35;
  pointer-events: none;
  z-index: 1;
}

.g:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 214, 255, .30);
  filter: brightness(1.03);
}

/* Imagen: CLAVE */
/* Gallery */
.gallery{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px){
  .gallery{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px){
  .gallery{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px){
  .gallery{ grid-template-columns: 1fr; }
}

.g{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  aspect-ratio: 4 / 3;
}

/* Overlay sutil */
.g::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.05),
    rgba(0,0,0,.40)
  );
  opacity:.35;
  pointer-events:none;
  z-index:1;
}

.g img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.g:hover img{
  transform: scale(1.06);
}


/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.contact-card,
.map-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  padding: 18px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px
}

.mini {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  color: rgba(234, 240, 255, .85);
}

.social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .90);
  font-weight: 700;
}

.social-link:hover {
  filter: brightness(1.06)
}

.map-embed {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(11, 18, 32, .45);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block
}

.callout {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(77, 214, 255, .22);
  background: rgba(77, 214, 255, .08);
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr
  }
}

/* ===== FOOTER DISTRIBUCIÓN ===== */

.footer{
  padding: 48px 0;
  background: linear-gradient(180deg, #071220, #050b14);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

/* IZQUIERDA */
.footer-info .brand-footer{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-desc{
  max-width: 560px;
  color: rgba(234,242,255,.75);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #eaf2ff;
  font-weight: 600;
  text-decoration: none;
}

.footer-btn:hover{
  background: rgba(255,255,255,.1);
}

.footer-legal{
  font-size: .85rem;
  color: rgba(234,242,255,.55);
}

/* DERECHA – RATING */
.footer-rating{
  max-width: 360px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.footer-rating h4{
  margin: 0 0 12px;
  font-weight: 700;
}

.rating-score{
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.rating-score strong{
  font-size: 2rem;
}

.rating-score span{
  color: rgba(234,242,255,.65);
  font-weight: 600;
}

.rating-stars{
  color: #FFC107;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.rating-sub{
  color: rgba(234,242,255,.7);
  font-size: .9rem;
  margin-bottom: 14px;
}

.rating-btn{
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(80,160,255,.3);
  color: #eaf2ff;
  font-weight: 700;
  text-decoration: none;
}

.rating-btn:hover{
  background: rgba(255,255,255,.1);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-rating{
    max-width: 100%;
  }
}


/* WhatsApp floating */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, .16);
  border: 1px solid rgba(37, 211, 102, .30);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .35);
  font-size: 22px;
  transition: transform var(--t), filter var(--t);
}

.wa-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.06)
}

/* Meta más elegante en 2 columnas */
.meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 10px;
  color: rgba(234, 240, 255, .78);
  font-size: .92rem;
}

/* Link suave dentro de la card */
.card-links {
  margin-top: 10px;
}

.link-soft {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  font-size: .9rem;
  color: rgba(124, 247, 200, .9);
  opacity: .9;
}

.link-soft:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Cards mini (opcionales) más compactas */
.card-mini {
  overflow: visible;
}

.card-mini .card-body {
  padding: 16px;
}

.card-mini h3 {
  margin: 0 0 6px;
}

/* CONTENEDOR CONTACTO: 2 columnas responsivas */
.contact{
  display: grid;
  gap: 18px;
  align-items: start;
}

/* Desktop: Contacto + Mapa lado a lado */
@media (min-width: 980px){
  .contact{
    grid-template-columns: 1fr 1.05fr;
  }
}

/* Mobile: uno debajo del otro */
@media (max-width: 979px){
  .contact{
    grid-template-columns: 1fr;
  }
}

/* Tarjetas */
.contact-card,
.map-card{
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* Mapa responsive */
.map-embed{
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
}

.map-embed iframe{
  width: 100%;
  height: 280px;
  border: 0;
}

@media (min-width: 980px){
  .map-embed iframe{ height: 340px; }
}

/* Botones: que no se rompan */
.form-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.form-actions .btn{
  flex: 1 1 180px;
}
.gallery{
  margin-top: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery .g{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.gallery img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* tablet */
@media (max-width: 980px){
  .gallery{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* móvil */
@media (max-width: 560px){
  .gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery img{ height: 140px; }
}
.section{
  padding: 72px 0;          /* antes seguro era 40-50 */
}

@media (max-width: 700px){
  .section{ padding: 54px 0; }
}

#por-que.section-soft{
  background-image:
    linear-gradient(rgba(8,20,40,.88), rgba(8,20,40,.88)),
    url("../img/tour7bahias01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#servicios.section-soft{
  background-image:
    linear-gradient(rgba(8,20,40,.88), rgba(8,20,40,.88)),
    url("../img/tour2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#contacto.section-soft{
  background-image:
    linear-gradient(rgba(8,20,40,.88), rgba(8,20,40,.88)),
    url("../img/islas.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-why{ background-position: center top; }
.bg-contacto{ background-position: center; }
.bg-servicios{ background-position: right center; }

/* =========================
   HEADER AISLADO (NO afecta tours)
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #0b1a2a, #081321);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-container{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header-inner{
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eaf2ff;
  font-weight: 800;
  text-decoration: none;
}

.site-brand-badge{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a{
  color: #cfd9ee;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover{ color:#fff; }

.site-btn{
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(80,160,255,.35);
  background: rgba(255,255,255,.06);
  color: #eaf2ff;
}

.site-btn:hover{ background: rgba(255,255,255,.10); }

/* Responsive básico */
@media (max-width: 820px){
  .site-nav{ gap: 12px; }
  .site-brand-text{ display: none; } /* opcional para que quepa */
}

.whatsapp-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wa-icon{
  width: 18px;
  height: 18px;
  color: #25D366; /* verde WhatsApp */
}

/* ===== Redes sociales footer ===== */
.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-btn{
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #eaf2ff;
  transition: transform .2s ease, background .2s ease;
}

.social-btn svg{
  width: 20px;
  height: 20px;
}

.social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

/* Colores sutiles al hover */
.social-btn.fb:hover{ color:#1877F2; }
.social-btn.ig:hover{ color:#E1306C; }
.social-btn.tt:hover{ color:#69C9D0; }

/* CTA secundario: Ver tours */
.btn-outline-dark{
  background: rgba(20, 221, 13, 0.85);
  color: #0b1224;
  border: 1.5px solid rgba(11,18,36,.35);
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  transition: all .25s ease;
  backdrop-filter: blur(6px);
}

.btn-outline-dark:hover{
  background: #e40e0e;
  border-color: rgba(11,18,36,.65);
  transform: translateY(-1px);
}

/* CTA principal */
.btn-primary{
  background: linear-gradient(135deg, #caa24d, #e0c27a);
  color: #1a1a1a;
  font-weight: 900;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(202,162,77,.35);
}

.btn-primary:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}
/* Card de galería */
.gallery .g{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);

  aspect-ratio: 16 / 9;   /* 👈 para que no quede “caja rara” */
}

/* La imagen debe llenar TODA la card */
.gallery .g img{
  width: 100%;
  height: 100%;           /* 👈 CLAVE para quitar el espacio abajo */
  object-fit: cover;      /* 👈 rellena, recorta poquito si hace falta */
  display: block;
}
/* Ver tours */
.hero-cta .btn:not(.btn-ghost){
  background: linear-gradient(135deg, #0b1f3a, #183b66);
  color: #fff;
}

/* Cotizar / Reservar */
.hero-cta .btn-ghost{
  background: linear-gradient(135deg, #d4a94e, #c0902f);
  color: #0b1224;
}

.header-inner{
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* contenedor del botón */
.lang-switch {
  margin-left: 20px; /* espacio después del logo */
}

/* botones */
.lang-btn {
  border: 1px solid rgba(255,255,255,.5);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: .3s;
}

.lang-btn:hover {
  background: rgba(255,255,255,.15);
}

.lang-btn.active {
  background: #00b3ff;
  border-color: #00b3ff;
}
  
/* ===== Language switch pill ===== */
.lang-pill {
  margin-left: 18px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(125, 211, 252, 0.6);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #7dd3fc;
  text-decoration: none;
  transition: all .2s ease;
}

.lang-pill:hover {
  background: rgba(125, 211, 252, 0.15);
  transform: translateY(-1px);
}
