/* ==========================================================================
   ESTILOS GENERALES
   ========================================================================== */

/* MARCA DE AGUA */

body::after {
  content: "";
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  background-image: url('img/receptour.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 9999;
}

body {
  background: #fff;
  font-family: "Bahnschrift Light", Times, serif;
  color: #111;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

h1, h2 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

button {
  cursor: pointer;
}

/* ================= NAV ================= */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px 20px 0px;
  background: transparent;
  z-index: 1000;
  box-sizing: border-box;
}


.nav div {
  font-weight: bold;
  color: white;
}

.nav nav {
  display: flex;
  gap: 35px;
  margin-left: auto;
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  margin-left: 35px;
}

.logo {
  display: flex;
   margin-top: 0;
  margin-left: 0; /* AJUSTA ESTE VALOR */
   
}

.logo img {
  height: 38px;

  width: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
    position: relative;
  top: -22px; /* AJUSTA ESTE VALOR */
}

.logo img:hover {
  border-color: #25D366;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* NAV SOLID — páginas internas */
.nav-solid {
  position: relative;
  background: #fff !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 60px !important;
  
}

.nav-solid a {
  color: #111 !important;
  text-shadow: none !important;
}

.nav-solid .logo img {
  filter: none !important;
}

/* ================= SLIDER PRINCIPAL ================= */
.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #111;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= AVES ================= */
.sky-birds {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.bird {
  position: absolute;
  width: 35px;
  height: 35px;
  left: -50px;
  animation: flyHorizontal 25s linear infinite, flap 0.6s ease-in-out infinite alternate;
}

.bird.b1 { top: 10%; animation-duration: 22s, 0.5s; transform: scale(0.8); }
.bird.b2 { top: 45%; animation-delay: 5s, 0s; animation-duration: 28s, 0.7s; transform: scale(0.6); }
.bird.b3 { top: 25%; animation-delay: 12s, 0.2s; animation-duration: 32s, 0.6s; transform: scale(1.1); }

@keyframes flyHorizontal {
  0%   { left: -50px; }
  100% { left: 105%; }
}

@keyframes flap {
  0%   { transform: scaleY(1) rotate(-5deg); }
  100% { transform: scaleY(0.3) rotate(5deg); }
}

/* ================= TEXTO SLIDER ================= */
.text {
  position: absolute;
  bottom: 120px;
  left: 60px;
  max-width: 600px;
  z-index: 50;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.text.active-text {
  opacity: 1 !important;
  transform: translateX(0) !important;
  filter: none !important;
}

.text h1 {
  font-size: 72px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0,0,0,0.6);
  margin-bottom: 10px;
}

.text p {
  font-size: 26px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
  line-height: 1.4;
}

/* ================= BOTONES HOME ================= */
.hero-buttons {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 60;
  display: flex;
  gap: 15px;
}

.hero-buttons button {
  padding: 12px 22px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.hero-buttons .btn-tour {
  background: transparent !important;
  color: #ffffff !important;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.hero-buttons .btn-tour:hover { opacity: 0.8; }

.hero-buttons .btn-reservar {
  background: #25D366 !important;
  color: #ffffff !important;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
  transition: all 0.3s ease;
}

.hero-buttons .btn-reservar:hover {
  background: #1fae57 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37,211,102,0.4);
}

/* ================= FLECHAS HOME ================= */
.slider-arrows.home-arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  top: auto;
  transform: none;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.slider-arrows.home-arrows button {
  background: rgba(0,0,0,0.35);
  border: none;
  color: white;
  font-size: 22px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
  width: auto;
  height: auto;
  box-shadow: none;
}

.slider-arrows.home-arrows button:hover {
  background: rgba(0,0,0,0.6);
  transform: scale(1.05);
}

/* ================= SECCIONES POPULARES ================= */
.popular-slider {
  padding: 100px 60px;
  text-align: left;
  position: relative;
}

.popular-slider h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #111;
  position: relative;
}

.popular-slider h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: #25D366;
  margin: 12px 0 0;
  border-radius: 2px;
}

.slider-arrows button, .slider-btn {
  position: relative;
  z-index: 101 !important;
  background: rgba(0,0,0,0.35);
  border: none;
  color: white;
  font-size: 22px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: none;
  width: auto;
  height: auto;
}

.slider-arrows button:hover, .slider-btn:hover {
  background: rgba(0,0,0,0.6);
  transform: scale(1.05);
}

.popular-slider .slider-arrows, .slider-btn {
  position: absolute;
  top: 175px;
  bottom: auto;
  right: 60px;
  left: auto;
  transform: none;
  display: flex;
  gap: 10px;
  z-index: 100 !important;
}

/* VER TODO */
.slider-label {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 20px;
  color: #25D366;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  text-align: left;
}

.slider-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #25D366;
  transition: width 0.3s ease;
}

.slider-label:hover { color: #1fae57; }
.slider-label:hover::after { width: 100%; }

/* ================= CAROUSEL ================= */
.slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding: 15px 0;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  width: max-content;
}

/* ================= CARDS TOURS ================= */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tour-card {
  flex: 0 0 380px;
  width: 380px;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.tour-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  box-sizing: border-box;
  text-align: left;
}

.overlay-text h3 { font-size: 22px; margin: 0; }
.overlay-text span { font-size: 14px; opacity: 0.9; }

/* ================= BADGES DISPONIBLE / RESERVA ================= */
.tour-card .badge-disponible {
  position: absolute;
  top: -40px;
  left: 15px;
  background: #25D366;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.tour-card:hover .badge-disponible { top: 0; }

.tour-card .badge-reserva {
  position: absolute;
  top: -40px;
  right: 15px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.08s;
  z-index: 10;
}

.tour-card:hover .badge-reserva { top: 0; }

/* ================= ALQUILER HERO ================= */
.alquiler-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  overflow: hidden;
}

.alquiler-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.alquiler-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.alquiler-hero .hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.alquiler-hero .hero-content p {
  background: #25D366;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin: 0;
  text-shadow: none;
}

.alquiler-wrapper { background: #fff; position: relative; z-index: 20; }
.alquiler-content-wrapper { max-width: 1100px; margin-left: 60px; }
.alquiler-section { padding: 40px 0; max-width: 800px; }

.alquiler-section h2 {
  font-size: 28px;
  color: #111;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}

.alquiler-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 35px;
  width: 60px;
  height: 3px;
  background: #25D366;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.alquiler-section.show h2::after { transform: scaleX(1); }

.alquiler-section p,
.alquiler-section ul { color: #444; line-height: 1.7; font-size: 16px; }
.alquiler-section ul { padding-left: 20px; }
.alquiler-section li { margin-bottom: 10px; }

#rental-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  width: max-content;
}

#rental-track .tour-card {
  flex: 0 0 380px;
  width: 380px;
  height: 320px;
}

#rental-track .tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#rental-track .tour-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.alquiler-reserve { text-align: center; padding: 40px 0 100px 0; }

#reserveAlquilerBtn {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
  transition: all 0.3s ease;
}

#reserveAlquilerBtn:hover {
  background: #1fae57;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37,211,102,0.4);
}

/* ================= BLOG ================= */
.blog-section {
  padding: 100px 60px;
  background: #fafafa;
}

.blog-section h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
}

.blog-section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: #25D366;
  margin: 12px 0 0;
  border-radius: 2px;
}

.blog-section p { color: #666; margin-bottom: 40px; }

#blogGrid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#blogGrid .tour-card {
  flex: 0 0 380px;
  width: 380px;
  height: 320px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.blog-card:hover { transform: translateY(-5px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-content { padding: 15px; }
.blog-date { font-size: 12px; color: #888; }
.blog-title { font-size: 18px; margin: 8px 0; }
.blog-text { font-size: 14px; color: #666; }

/* MODAL BLOG */
.blog-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.blog-modal-content {
  background: #fff;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.blog-modal-content img { width: 100%; height: 300px; object-fit: cover; }
.blog-modal-content h2 { padding: 15px; font-size: 24px; }
.blog-modal-content p { padding: 0 15px 15px; line-height: 1.6; color: #444; }
.blog-modal-content .close { position: absolute; right: 20px; top: 10px; font-size: 30px; cursor: pointer; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ================= TOURS LIST GRID ================= */
.tours-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.tour-detail-hidden { display: none; padding: 40px; }
.tour-detail-img { width: 100%; height: 400px; object-fit: cover; border-radius: 15px; }
.tour-detail-map { border: 0; border-radius: 10px; }

#price { display: none !important; }

.btn-volver {
  background: transparent;
  border: 1px solid #ddd;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-volver:hover { background: #f5f5f5; }

/* ================= TOURS PAGE ================= */
.tours-page { padding-top: 100px; }

/* ================= INSTAGRAM ================= */
.instagram-section { padding: 80px 10%; text-align: center; }
.instagram-section h2 { font-size: 32px; margin-bottom: 30px; position: relative; }
.instagram-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.instagram-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  background: #E1306C;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* ================= SOCIAL PREMIUM ================= */
.social-premium { padding: 80px 10%; text-align: center; background: #fff; }
.social-premium h2 { font-size: 34px; color: #111; margin-bottom: 8px; }
.social-premium p { color: #666; margin-bottom: 40px; }

.social-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.social-card {
  text-decoration: none;
  padding: 25px 15px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.7s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-card:hover { transform: translateY(-6px); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.social-card .icon { font-size: 34px; line-height: 1; }
.social-card .icon svg { width: 34px; height: 34px; }
.social-card.wa .icon, .social-card.wa .icon svg { color: #25D366; fill: #25D366; }
.social-card.wa:hover { border-top: 3px solid #25D366; }
.social-card.ig .icon, .social-card.ig .icon svg { color: #E1306C; fill: #E1306C; }
.social-card.ig:hover { border-top: 3px solid #E1306C; }
.social-card.fb .icon, .social-card.fb .icon svg { color: #1877F2; fill: #1877F2; }
.social-card.fb:hover { border-top: 3px solid #1877F2; }
.social-card.tt .icon, .social-card.tt .icon svg { color: #000; fill: #000; }
.social-card.tt:hover { border-top: 3px solid #000; }
.social-card h3 { margin: 5px 0; font-size: 18px; color: #111; }
.social-card span { font-size: 13px; color: #777; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ================= SOCIAL POSTS ================= */
.social-posts { padding: 80px 10%; background: #fff; text-align: center; }
.social-posts h2 { font-size: 34px; margin-bottom: 40px; color: #111; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.social-post {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.social-post:hover { transform: translateY(-5px); }
.social-post h3 { margin-bottom: 10px; font-size: 18px; }
.social-post a { display: inline-block; margin-top: 10px; text-decoration: none; font-weight: 600; }
.social-post.ig h3, .social-post.ig a { color: #E1306C; }
.social-post.fb h3, .social-post.fb a { color: #1877F2; }
.social-post.tt h3, .social-post.tt a { color: #000; }

/* ================= FB IFRAME ================= */
.fb-iframe { border: none; overflow: hidden; display: block; }
.tiktok-embed-block { max-width: 100%; min-width: 288px; }

/* ================= DETALLE ALQUILER ================= */
.alquiler-detail-page { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.alquiler-detail-img { width: 100%; height: 420px; object-fit: cover; border-radius: 15px; margin-bottom: 30px; }
.alquiler-detail-content h1 { font-size: 38px; font-weight: 800; color: #111; margin-bottom: 8px; }
.alquiler-detail-precio { font-size: 22px; font-weight: 700; color: #25D366; margin-bottom: 16px; }

.alquiler-detail-info {
  display: flex;
  gap: 30px;
  margin: 24px 0;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 12px;
}

.alquiler-info-item { display: flex; flex-direction: column; gap: 4px; }
.alquiler-info-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #999; }
.alquiler-detail-content h2 { font-size: 20px; margin: 24px 0 12px; }
.alquiler-detail-content ul { padding-left: 20px; color: #444; line-height: 2; }

/* ================= NOTICIA DETAIL ================= */
.nd-hero { position: relative; width: 100%; height: 70vh; overflow: hidden; }
.nd-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.nd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6)); }

.nd-hero-tag {
  position: absolute;
  top: 30px;
  left: 40px;
  background: #25D366;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 2px;
}

.nd-article { max-width: 760px; margin: 0 auto; padding: 50px 24px 100px; }
.nd-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.nd-categoria { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #25D366; }
.nd-fecha { font-size: 13px; color: #999; }

.nd-article h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #0a0a0a;
  margin: 0 0 24px;
}

.nd-divider { width: 60px; height: 4px; background: #25D366; border-radius: 2px; margin-bottom: 28px; }

.nd-lead {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  line-height: 1.6;
  margin-bottom: 24px;
  border-left: 4px solid #25D366;
  padding-left: 20px;
  border-radius: 0;
}

#contenido-noticia { font-size: 17px; color: #444; line-height: 1.85; margin-bottom: 50px; }

.nd-footer-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
  gap: 16px;
}

.nd-btn-volver {
  background: transparent;
  border: 1.5px solid #ddd;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #444;
  transition: all 0.2s ease;
}

.nd-btn-volver:hover { border-color: #25D366; color: #25D366; }

.nd-share { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #999; }

.nd-share-btn {
  background: #f5f5f5;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nd-share-btn:hover { background: #25D366; color: #fff; }

/* ================= FOOTER ================= */
.footer { background: #0d0d0d; color: #fff; overflow: hidden; }

.footer-tagline {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 10px 0;
  background: #0d0d0d;
}

.footer-tagline-inner {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 18s linear infinite;
}

.footer-tagline-inner span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.footer-dot { color: #25D366 !important; opacity: 1 !important; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer-cta { text-align: center; padding: 45px 60px 38px; }
.footer-cta-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #25D366; margin: 0 0 12px; }

.footer-cta-headline {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 24px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.footer-cta-btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.footer-cta-btn:hover { background: #1fae57; transform: translateY(-2px); box-shadow: 0 15px 35px rgba(37,211,102,0.3); }
.footer-cta-btn:hover svg { transform: translateX(4px); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0 60px; }

.footer-body { display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; gap: 40px; }

.footer-logo { height: 28px; width: auto; object-fit: contain; display: block; filter: none; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; margin: 0; }

.footer-links { display: flex; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }

.footer-social { display: flex; gap: 8px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: all 0.25s ease;
}

.footer-social a:hover { background: #25D366; border-color: #25D366; color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 15px; height: 15px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 14px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {

  .nav, .text, .hero-buttons, .popular-slider, .section, .blog-section {
    padding: 20px 24px !important;
  }

  .nav { background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); }
  .nav nav { gap: 15px; }
  .nav a { font-size: 14px; margin-left: 10px; }

  .logo img { height: 30px; width: 30px; }

  .nav-solid { padding: 16px 24px !important; }

  .text { bottom: 160px; left: 24px; }
  .text h1 { font-size: 38px; }
  .text p { font-size: 18px; }

  .hero-buttons { bottom: 40px; left: 24px; width: calc(100% - 48px); display: flex; gap: 10px; }
  .hero-buttons button { flex: 1; font-size: 14px; padding: 14px 10px; }
  .slider-arrows.home-arrows { display: none !important; }

  .popular-slider { padding-top: 60px !important; padding-bottom: 90px !important; }
  .popular-slider h2 { font-size: 28px; margin-bottom: 30px; }

  .slider-container { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .slider-track { display: flex; gap: 12px; transform: none !important; width: auto; }

  .tour-card {
    flex: 0 0 82% !important;
    width: 82% !important;
    max-width: 82% !important;
    height: 300px !important;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
  }

  #rental-track { transform: none !important; width: auto !important; gap: 12px; }
  #rental-track .tour-card { flex: 0 0 82% !important; width: 82% !important; max-width: 82% !important; height: 300px !important; scroll-snap-align: start; }
  #rental-track .tour-card img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: top !important; }

  .tour-card img, #rental-track .alquiler-card img { width: 100%; height: 100%; object-fit: cover; }
  .slider-arrows:not(.home-arrows) { display: none !important; }
  .tours-grid { grid-template-columns: 1fr; }
  .tours-list-grid .tour-card { flex: 0 0 100% !important; width: 100% !important; }

  .alquiler-hero { height: 60vh; }
  .alquiler-hero .hero-content h1 { font-size: 34px; }
  .alquiler-hero .hero-content p { font-size: 16px; }
  .alquiler-content-wrapper { margin-left: 24px; padding-right: 24px; }
  .alquiler-section { padding: 40px 0; }

  .tours-page { padding-top: 90px; }

  .instagram-wrapper { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; }

  .alquiler-detail-img { height: 240px; }
  .alquiler-detail-content h1 { font-size: 28px; }
  .alquiler-detail-info { flex-direction: column; gap: 16px; }

  .nd-hero { height: 50vh; }
  .nd-hero-tag { top: 20px; left: 20px; }
  .nd-article { padding: 36px 20px 80px; }
  .nd-lead { font-size: 17px; }
  #contenido-noticia { font-size: 16px; }
  .nd-footer-article { flex-direction: column; align-items: flex-start; }

  .footer-cta { padding: 36px 24px 28px; }
  .footer-cta-headline { letter-spacing: -1px; }
  .footer-divider { margin: 0 24px; }
  .footer-body { flex-direction: column; align-items: flex-start; padding: 24px; gap: 22px; }
  .footer-links { flex-wrap: wrap; gap: 12px 20px; }
  .footer-bottom { flex-direction: column; gap: 4px; padding: 12px 24px; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  .social-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body::after {
    display: none;
  }
}
.bloque-categoria {
  margin: 40px 0;
}

.titulo-categoria {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.grid-categoria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.footer-direccion {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  line-height: 1.5;
  max-width: 260px;
}
.footer-direccion {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  flex-wrap: wrap;
}

/* BOTÓN MAPS */
.footer-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: all 0.25s ease;
  text-decoration: none;
}

/* ICONO */
.footer-map-btn svg {
  width: 15px;
  height: 15px;
}

/* HOVER (igual que los otros) */
.footer-map-btn:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: translateY(-3px);
}