/* ================== Variables & Reset ================== */
:root{
  --bg:#1e1e1e;
  --bg-2:#171717;
  --surface:#2b2b2b;
  --text:#ffffff;
  --muted:#cfcfcf;
  --stroke:rgba(255,255,255,0.10);
  --accent:#e63946;
  --radius:16px;
  --shadow:0 12px 30px rgba(0,0,0,.35);
  --navH:80px; /* altura aproximada navbar */
}

*{margin:0; padding:0; box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top: var(--navH);}
body{
  font-family:"Poppins",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  padding-top: var(--navH);
  overflow-x:hidden; /* ✅ evita cortes/scroll horizontal */
}
img, video{max-width:100%; height:auto; display:block}

/* ================== Navbar (Fijo) ================== */
.navbar{
  position: fixed; top:0; left:0; right:0;
  z-index: 3000;
  display:flex; align-items:center; gap:14px;
  justify-content:space-between;
  width:100%;
  background:#2b2b2b;
  padding:15px 40px;
  border-bottom:1px solid var(--stroke);
}

.logo img{height:30px; width:auto; display:block}

/* Navegación desktop */
.navbar nav{ position: static; transform:none; padding:0; height:auto; background:transparent; border:0; z-index:auto; }
.navbar ul{list-style:none; display:flex; gap:20px; align-items:center}
.navbar a{color:#fff; text-decoration:none}
.navbar ul li a{
  position:relative;
  padding:5px 0;
  transition:color .3s ease;
}
.navbar ul li a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-4px;
  width:100%;
  height:2px;
  background:var(--accent);
  transform:translateX(-50%) scaleX(0);
  transform-origin:center;
  transition:transform .3s ease;
}
.navbar ul li a:hover{color:var(--accent)}
.navbar ul li a:hover::after{transform:translateX(-50%) scaleX(1)}

/* CTA Contacto */
.btn-contacto{
  background:var(--accent);
  padding:10px 20px;
  border-radius:8px;
  text-decoration:none;
  color:#fff;
  margin-left:20px;
  transition:background .3s ease;
}
.btn-contacto:hover{background:#c12734}

/* ================== Idioma (botón moderno) ================== */
.lang-switcher{
  margin-left: 10px;
  position: relative;
  z-index: 4000; /* ✅ que no quede debajo */
}
.lang-switcher select{
  appearance:none;
  background:var(--surface);
  border:1px solid var(--stroke);
  border-radius:50px;
  padding:8px 32px 8px 16px;
  font-size:.95rem;
  font-weight:600;
  color:var(--text);
  cursor:pointer;
  transition:all .3s ease;
  outline:none;
  box-shadow:var(--shadow);
}
.lang-switcher select:hover{
  border-color:var(--accent);
  box-shadow:0 0 12px rgba(230,57,70,.6);
  transform:translateY(-2px);
}
.lang-switcher::after{
  content:"▾";
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:.8rem;
  color:var(--muted);
  pointer-events:none;
}

/* ================== Hamburguesa ================== */
.hamburger{
  width:44px; height:44px;
  border:1px solid var(--stroke);
  border-radius:12px;
  background:#2b2b2b;
  padding:0;
  cursor:pointer;
  display:none;               /* se habilita en mobile */
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}
.hamburger span{
  width:22px; height:2px;
  background:#fff;
  border-radius:2px;
  display:block;
  transition:transform .25s ease, opacity .2s ease;
  transform-origin:center;
}
.hamburger.is-active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity:0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* CTA contacto dentro del panel (oculto en desktop) */
.navbar .menu-contacto .btn-contacto{
  display:none;
  width:100%;
  text-align:center;
  margin-top:10px;
}

/* ================== Overlay ================== */
.menu-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 3001; /* ✅ encima del contenido, debajo del panel */
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s step-end;
}
body.menu-open .menu-overlay{
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* ================== Mobile (≤ 960px) ================== */
@media (max-width: 960px){
  .navbar{ padding:12px 16px; }
  .hamburger{ display:flex; }
  .btn-contacto-desktop{ display:none; }

  /* Panel off-canvas */
  .navbar nav{
    position: fixed;
    top:0; right:0;
    height:100vh;
    width:78vw;
    max-width:360px;
    background:#1f1f1f;
    border-left:1px solid var(--stroke);
    transform: translateX(100%);
    transition: transform .3s ease;
    padding:80px 20px 24px;
    z-index:3002;  /* ✅ por encima overlay */
  }
  body.menu-open .navbar nav{ transform: translateX(0); }

  .navbar nav ul{ flex-direction:column; gap:18px; align-items:stretch; }
  .navbar nav a{ font-size:1.05rem; display:block; padding:12px 4px; }

  /* CTA dentro del panel */
  .navbar .menu-contacto .btn-contacto{
    display:inline-block;
    width:100%;
    margin-left:0;
  }

  /* Evitar scroll del body con panel abierto */
  body.menu-open{ overflow:hidden; }
}

/* ================== Hero ================== */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
}
.hero-video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2}
.hero-overlay{position:absolute; inset:0; background:rgba(0,0,0,.35); z-index:-1}
.hero-content{max-width:600px; margin-left:80px; color:#fff; z-index:1}
.hero h1{font-size:3rem}
.hero p{margin:15px 0}
.kicker{ font-size:1.05rem; letter-spacing:.08em; text-transform:uppercase; opacity:.95; margin-bottom:6px; }
.lead{ font-size:1.1rem; color:#eaeaea; margin:15px 0 0 }
.btn-primario{
  background:var(--accent);
  padding:12px 25px;
  border-radius:8px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  display:inline-block;
  transition:all .3s ease;
  margin-top:30px;
  box-shadow:var(--shadow);
}
.btn-primario:hover{background:#c12734; transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,.3)}

/* ================== Títulos / Secciones ================== */
.section-header{ text-align:center; margin-bottom:40px }
.section-header h2{
  font-size:2.8rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#fff;
  margin-bottom:10px;
  position:relative;
  display:inline-block;
}
.section-header h2::after{
  content:"";
  position:absolute;
  bottom:-8px;
  left:50%;
  transform:translateX(-50%);
  width:80px;
  height:4px;
  background:var(--accent);
  border-radius:2px;
}
.section-header p{font-size:1.1rem; color:#bcbcbc; max-width:600px; margin:0 auto}

/* ================== Destinos destacados ================== */
.destacados-v2{
  background:var(--bg-2);
  padding:64px 24px;
  text-align:center;
}
.destacados-v2 .cards{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr)); /* ✅ */
  gap:28px;
  min-width:0; /* ✅ */
}

.tour-card{
  position:relative;
  display:block;
  height:420px;
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background:#0f0f0f;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transform:translateZ(0);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  isolation:isolate;
  min-width:0; max-width:100%; /* ✅ */
}
.tour-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(105%);
  transform:scale(1.02);
  transition:transform .6s ease
}
.tour-card .shade{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 35%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
  z-index:1
}
.tour-card .content{
  position:absolute; left:0; right:0; bottom:18px;
  z-index:2;
  padding:0 22px;
  color:#e9e9e9
}
.tour-card h3{letter-spacing:.06em; font-weight:800; font-size:1rem; margin:0 0 6px}
.tour-card small{color:#bcbcbc; font-size:.85rem}
.tour-card::after{
  content:"";
  position:absolute; inset:0;
  border-radius:16px;
  padding:1px;
  background:linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.05));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:0;
  transition:opacity .35s ease, filter .35s ease;
}
.tour-card.emphasis{border-color:rgba(255,255,255,.28)}
.tour-card.emphasis::after{opacity:.35}
.tour-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(230,57,70,.75), 0 12px 40px rgba(0,0,0,.6);
  border-color:rgba(230,57,70,.8)
}
.tour-card:hover::after{opacity:1; filter:blur(2px)}
.tour-card:hover img{transform:scale(1.06)}

/* Responsive destacados */
@media (max-width:1024px){
  .destacados-v2 .cards{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:18px; }
}
@media (max-width:600px){
  .destacados-v2{ padding:48px 16px; }
  .destacados-v2 .cards{ grid-template-columns:1fr; gap:16px; }
  .tour-card{ height:360px; }
  .tour-card:hover{ transform:none; } /* mobile */
}

/* ================== Destinos generales ================== */
.destinos-v2{
  background:#1e1e1e;
  padding:64px 24px;
  text-align:center;
}
.destinos-v2 .grid-destinos{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr)); /* ✅ evita cortes */
  gap:24px;
  min-width:0; /* ✅ */
}

.destino-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:#2a2a2a;
  border:1px solid rgba(255,255,255,.08);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor:default;
  min-width:0; max-width:100%; /* ✅ */
}
.destino-card img{width:100%; height:240px; object-fit:cover; display:block}
.destino-card .content{padding:16px; text-align:left; color:#fff}
.destino-card h3{font-size:1.05rem; margin-bottom:6px; font-weight:600}
.destino-card small{color:#bcbcbc; font-size:.9rem}
.destino-card:hover{transform:translateY(-6px); box-shadow:0 10px 25px rgba(0,0,0,.4); border-color:rgba(230,57,70,.35)}

/* ✅ Quitar subrayado/azul SOLO en sección Destinos */
#destinos a,
#destinos a:visited,
#destinos a:hover,
#destinos a:active{
  text-decoration:none;
  color:inherit;
}
#destinos a{ -webkit-tap-highlight-color: transparent; }

/* Responsive destinos */
@media (max-width:1024px){
  .destinos-v2 .grid-destinos{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}
@media (max-width:720px){
  .destinos-v2{ padding:48px 16px; }
  .destinos-v2 .grid-destinos{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; }
  .destino-card img{ height:200px; }
}
@media (max-width:480px){
  .destinos-v2 .grid-destinos{ grid-template-columns:1fr; }
  .section-header h2{font-size:2.1rem}
}

/* ================== Transporte Aeropuerto ================== */
.transporte-v2{ background:#171717; padding:80px 24px; color:#fff; }
.transporte-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}
.transporte-text{ flex:1; min-width:320px; min-width:0; }
.transporte-text h2{ font-size:2.2rem; font-weight:800; margin-bottom:20px; }
.transporte-text p{ font-size:1.1rem; color:#d1d1d1; margin-bottom:20px; line-height:1.6; }
.transporte-list{ list-style:none; margin-bottom:25px; }
.transporte-list li{ margin-bottom:10px; font-size:1rem; }
.transporte-img{ flex:1; min-width:300px; min-width:0; }
.transporte-img img{ width:100%; border-radius:16px; box-shadow:0 8px 20px rgba(0,0,0,0.5); }
@media (max-width:768px){
  .transporte-container{ flex-direction:column; text-align:center; }
  .transporte-text h2{ font-size:1.8rem; }
}

/* ================== Testimonios ================== */
.testimonios{ background:#1a1a1a; padding:80px 24px; text-align:center; color:#fff; }
.testimonios .section-header{ margin-bottom:50px; }
.testimonios-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr)); /* ✅ */
  gap:28px;
  min-width:0;
}
.testimonio-card{
  background:#222;
  border-radius:16px;
  padding:30px 24px;
  text-align:left;
  border:1px solid rgba(255,255,255,0.08);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  min-width:0;
}
.testimonio-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  border-color:rgba(230,57,70,0.35);
}
.testimonio-card .comentario{ font-style:italic; margin-bottom:20px; color:#eaeaea; }
.testimonio-card .autor{ display:flex; align-items:center; gap:12px; }
.testimonio-card .autor img{
  width:48px; height:48px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--accent);
}
.testimonio-card .autor h4{ margin:0; font-size:1rem; font-weight:600; }
.testimonio-card .autor small{ color:#bcbcbc; font-size:.85rem; }
@media (max-width:900px){
  .testimonios-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:600px){
  .testimonios-grid{ grid-template-columns:1fr; }
}

/* ================== Sobre nosotros ================== */
.nosotros-v2{
  position:relative;
  background:url("images/santiago_cordillera.jpg") center/cover no-repeat;
  color:#fff;
  padding:100px 20px;
  min-height:500px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.nosotros-v2 .overlay{position:absolute; inset:0; background:rgba(0,0,0,.55); z-index:1}
.nosotros-content{position:relative; z-index:2; max-width:750px}
.nosotros-content h2{font-size:2.5rem; font-weight:800; margin-bottom:20px}
.nosotros-content p{font-size:1.1rem; margin-bottom:15px; line-height:1.6; color:#eaeaea}
.nosotros-content .btn-primario{margin-top:25px; display:inline-block}

/* ================== FAQ (Acordeón) ================== */
.faq{ background:#171717; padding:80px 24px; color:var(--text); }
.faq .section-header{ text-align:center; margin-bottom:40px; }
.faq-accordion{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.faq-item{
  background:#1f1f1f;
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  overflow:hidden;
}
.faq-trigger{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  color:var(--text);
  padding:18px 20px;
  cursor:pointer;
  font:inherit;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:12px;
}
.faq-trigger:hover{ background:#242424; }
.faq-trigger:focus{
  outline:2px solid var(--accent);
  outline-offset:-2px;
  border-radius:var(--radius);
}
.faq-panel{
  padding:0 20px;
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease, padding .3s ease;
  color:#e5e5e5;
}
.faq-panel p{ padding:12px 0 20px; line-height:1.65; }
.faq-item.is-open .faq-panel{
  max-height:420px;
  padding:0 20px 8px;
}
.faq-item.is-open{
  border-color:rgba(230,57,70,0.45);
  box-shadow:0 10px 26px rgba(0,0,0,.35);
}

/* ================== Beneficios ================== */
.beneficios-v2{ background:#171717; padding:80px 24px; text-align:center; color:#fff; }
.beneficios-v2 .section-header{ margin-bottom:50px; }
.beneficios-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr)); /* ✅ */
  gap:30px;
  max-width:1200px;
  margin:0 auto;
  min-width:0;
}
.beneficio-card{
  background:#222;
  border-radius:16px;
  padding:30px 20px;
  transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid rgba(255,255,255,.08);
  min-width:0;
}
.beneficio-card .icon{font-size:2.5rem; margin-bottom:20px}
.beneficio-card h3{font-size:1.3rem; font-weight:600; margin-bottom:12px}
.beneficio-card p{font-size:.95rem; color:#cfcfcf; line-height:1.5}
.beneficio-card:hover{transform:translateY(-8px); box-shadow:0 12px 30px rgba(0,0,0,.5); border-color:rgba(230,57,70,.45)}
@media (max-width:1100px){
  .beneficios-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:600px){
  .beneficios-grid{ grid-template-columns:1fr; }
}

/* ================== Contacto / WhatsApp CTA ================== */
.contacto-v2{ background:#171717; padding:100px 20px; text-align:center; color:#fff; }
.contacto-v2 h2{font-size:2.5rem; font-weight:800; margin-bottom:20px}
.contacto-v2 p{
  font-size:1.1rem;
  margin-bottom:30px;
  color:#d1d1d1;
  max-width:600px;
  margin-left:auto;
  margin-right:auto
}
.btn-whatsapp{
  background:#25D366;
  color:#fff;
  font-size:1.2rem;
  font-weight:600;
  padding:15px 35px;
  border-radius:50px;
  text-decoration:none;
  display:inline-block;
  transition:all .3s ease;
  box-shadow:0 6px 20px rgba(0,0,0,.4);
}
.btn-whatsapp:hover{background:#1ebe5d; transform:translateY(-4px); box-shadow:0 12px 28px rgba(0,0,0,.55)}

/* ================== Política de Cancelación ================== */
.politica-v2{
  background:var(--bg-2);
  padding:80px 24px;
  color:var(--text);
  text-align:center;
}
.politica-v2 .section-header p{
  font-size:1.1rem;
  color:var(--muted);
  max-width:700px;
  margin:0 auto 40px;
}
.politica-v2 .politica-content ul{
  list-style:none;
  padding:0;
  max-width:700px;
  margin:0 auto 20px;
  text-align:left;
}
.politica-v2 .politica-content ul li{
  background:#222;
  padding:16px 20px;
  margin-bottom:12px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  font-size:1rem;
  line-height:1.5;
  transition:transform .3s ease, box-shadow .3s ease;
}
.politica-v2 .politica-content ul li:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.politica-v2 .nota{ font-size:.9rem; color:#bcbcbc; margin-top:20px; }

/* ================== Footer ================== */
.footer{
  background:#111;
  padding:80px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  color:#fff;
}
.footer a{ color:var(--accent); text-decoration:none; }
.footer a:hover{ text-decoration:underline; }
.footer-left p{ margin:5px 0; font-size:.95rem; font-weight:100; }
.footer-right{ display:flex; align-items:center; }
.footer-logo{ height:70px; width:auto; margin-left:20px; }

/* ================== WhatsApp flotante ================== */
.whatsapp-float{
  position:fixed;
  bottom:20px; right:20px;
  width:55px; height:55px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 6px 20px rgba(0,0,0,.4);
  z-index:999;
  transition:transform .3s ease, box-shadow .3s ease;
}
.whatsapp-float img{width:28px; height:28px}
.whatsapp-float:hover{transform:scale(1.1); box-shadow:0 10px 28px rgba(0,0,0,.55)}
@media (max-width:600px){
  .whatsapp-float{width:45px; height:45px; bottom:15px; right:15px}
  .whatsapp-float img{width:22px; height:22px}
}

/* ================== Responsive extras ================== */
@media (max-width:720px){
  .hero{height:80vh}
  .hero-content{margin-left:24px}
}

/* ================== Reduce motion ================== */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .btn-primario, .tour-card, .destino-card, .whatsapp-float{transition:none !important}
}

/* =========================
   FOOTER GOANDES (estilo minimal premium)
========================= */
.goa-footer{
  background: #f6efe7;              /* crema suave como el ejemplo */
  color: #1b1b1b;
  padding: 70px 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.goa-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
}

.goa-footer__top{
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
}

.goa-footer__logo{
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.10));
}

.goa-footer__tagline{
  margin: 0;
  color: rgba(0,0,0,.70);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 720px;
}

.goa-footer__divider{
  height: 1px;
  background: rgba(0,0,0,.10);
  margin: 28px 0;
}

.goa-footer__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.35fr;
  gap: 28px;
}

.goa-footer__title{
  margin: 0 0 12px;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.78);
}

.goa-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.goa-footer__list a{
  color: rgba(0,0,0,.72);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.goa-footer__list a:hover{
  color: #000;
  opacity: .9;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.goa-footer__muted{
  color: rgba(0,0,0,.60);
}

.goa-footer__col--wide{
  padding-left: 10px;
}

.goa-footer__form{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.goa-footer__form input{
  width: 100%;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.55);
  padding: 12px 14px;
  border-radius: 14px;
  outline: none;
  font-size: .95rem;
}

.goa-footer__form input:focus{
  border-color: rgba(230,57,70,.45);
  box-shadow: 0 0 0 4px rgba(230,57,70,.12);
}

.goa-footer__form button{
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 14px;
  background: #e63946;
  color: #fff;
  font-weight: 700;
  transition: transform .2s ease, filter .2s ease;
}

.goa-footer__form button:hover{
  transform: translateY(-1px);
  filter: brightness(.95);
}

/* Redes */
.goa-footer__social{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.goa-footer__social a{
  text-decoration: none;
  color: rgba(0,0,0,.70);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.45);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.goa-footer__social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.75);
  border-color: rgba(0,0,0,.22);
}

.goa-ico{
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
}

/* Bottom */
.goa-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.goa-footer__bottom small{
  color: rgba(0,0,0,.60);
}

.goa-footer__bottomlinks{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.goa-footer__bottomlinks a{
  color: rgba(0,0,0,.70);
  text-decoration: none;
  font-size: .95rem;
}

.goa-footer__bottomlinks a:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Accesibilidad */
.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;
}

/* Responsive */
@media (max-width: 900px){
  .goa-footer__top{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .goa-footer__logo{ width: 180px; }
  .goa-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
  .goa-footer__col--wide{
    grid-column: 1 / -1;
    padding-left: 0;
  }
}

@media (max-width: 520px){
  .goa-footer{
    padding: 54px 16px;
  }
  .goa-footer__grid{
    grid-template-columns: 1fr;
  }
  .goa-footer__form{
    grid-template-columns: 1fr;
  }
  .goa-footer__form button{
    width: 100%;
  }
}

