/* =============================================
   KIBOEIRA — Style v4 (Dark Minimal)
   ============================================= */

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0b1a2b;
  color: #ffffff;
  min-height: 100vh;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 64px;
  padding: 0 60px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  background: rgba(9, 16, 28, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo { font-size: 20px; font-weight: 600; letter-spacing: 0.02em; }
.logo-kibo { color: #ffffff; }
.logo-eira { color: #11a9b1; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: #11a9b1;
  transition: width 0.3s;
}
.nav a:hover { color: #ffffff; }
.nav a:hover::after { width: 100%; }
.nav a.active { color: #ffffff; }
.nav a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 101;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 1px; }

/* =============================================
   SECTION BASE
   ============================================= */
.section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #b8996e;
  margin-bottom: 20px;
}

.section-heading {
  font-size: 32px; font-weight: 700;
  margin-bottom: 16px;
}

.section-body {
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.8; max-width: 640px;
}

/* =============================================
   HERO (index.html)
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  background: linear-gradient(155deg, #0b1a2b 0%, #0e2438 55%, #091828 100%);
}

.hero-inner { max-width: 1200px; width: 100%; margin: 0 auto; }

.hero-title {
  font-size: 54px; font-weight: 700; line-height: 1.08;
  margin-bottom: 16px; max-width: 680px;
}

.hero-subtitle {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.8;
  max-width: 500px; margin-bottom: 52px;
}

/* Feature cards */
.home-floating-cards { display: flex; gap: 18px; flex-wrap: wrap; }

.floating-card {
  flex: 1; min-width: 220px; max-width: 290px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  transition: border-color 0.3s;
}
.floating-card:hover { border-color: rgba(17,169,177,0.4); }
.floating-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.floating-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float.delay { animation-delay: 1.2s; }

/* =============================================
   PROMO SECTION
   ============================================= */
.section-promo {
  padding: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.promo-header {
  max-width: 1200px; margin: 0 auto 36px;
}

.promo-carousel-container {
  position: relative; max-width: 920px; margin: 0 auto;
  overflow: visible;
}

.promo-carousel {
  display: flex;
  overflow-x: scroll; overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
}
.promo-carousel::-webkit-scrollbar { display: none; }
.promo-carousel:active { cursor: grabbing; }

.promo-item {
  min-width: 260px; margin: 0 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 10px;
  text-align: center; flex-shrink: 0;
}

.promo-item img {
  width: 100%; height: 380px;
  object-fit: cover; border-radius: 2px;
  display: block;
}

.promo-link {
  display: block; margin-top: 10px; padding: 10px 14px;
  background: linear-gradient(135deg, #095472, #11a9b1);
  color: #fff; text-decoration: none;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: opacity 0.2s;
}
.promo-link:hover { opacity: 0.85; }

.promo-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(9,16,28,0.85); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.promo-btn:hover { background: rgba(17,169,177,0.25); border-color: #11a9b1; }
.promo-btn.left { left: -48px; }
.promo-btn.right { right: -48px; }

/* =============================================
   DESTINOS GRID
   ============================================= */
.section-destinos {
  padding: 80px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.destinos-block { max-width: 1200px; margin: 0 auto 64px; }
.destinos-block:last-child { margin-bottom: 0; }

.grid-destinos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  overflow: hidden;
}

.destino-card {
  background: #0b1a2b;
  position: relative; overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.destino-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(0.65);
  display: block;
}
.destino-card:hover img { transform: scale(1.07); filter: brightness(0.4); }

.destino-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 6px;
}

.destino-card-info h3 {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.btn-detalle {
  align-self: flex-start;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px;
  background: none;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff; cursor: pointer; border-radius: 1px;
  font-family: inherit;
  transition: all 0.2s;
  opacity: 0;
}
.destino-card:hover .btn-detalle { opacity: 1; }
.btn-detalle:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* =============================================
   NOSOTROS
   ============================================= */
.section-nosotros { padding: 110px 60px 60px; max-width: 800px; margin: 0 auto; }

.nosotros-body h1 { font-size: 40px; font-weight: 700; margin-bottom: 28px; }
.nosotros-body h2 {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #b8996e; margin-top: 32px; margin-bottom: 10px;
}
.nosotros-body p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 10px; }
.nosotros-body h4 { font-size: 15px; font-weight: 600; margin-top: 8px; color: rgba(255,255,255,0.9); }
.nosotros-body h3 { font-size: 18px; font-weight: 700; margin-top: 12px; }

/* Carousel for nosotros page destinos */
.nosotros-carousel .promo-item img { height: 200px; }
.nosotros-carousel .promo-item h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 10px; }

/* =============================================
   CONTACTO
   ============================================= */
.section-contacto { padding: 100px 60px; max-width: 1100px; margin: 0 auto; }

.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}

.contacto-info h2 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.contacto-info > p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 36px; }
.contacto-info h3 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #b8996e; margin-bottom: 10px;
}

.contact-list { list-style: none; margin-bottom: 28px; }
.contact-list li { margin-bottom: 8px; }
.contact-list a { color: #fff; text-decoration: none; font-size: 16px; transition: color 0.2s; }
.contact-list a:hover { color: #11a9b1; }

.btn-whatsapp {
  display: inline-block; padding: 11px 22px;
  background: #25d366; color: #fff; text-decoration: none;
  font-size: 13px; letter-spacing: 0.06em; border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.85; }

/* Form */
.contacto-form h3 { font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.contacto-form > p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 24px; }

#form-whatsapp { margin-top: 0; }

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }

.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.form-group input, .form-group select {
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 14px; font-family: inherit;
  border-radius: 2px; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: #11a9b1; }
.form-group select { appearance: none; }
.form-group select option { background: #111e30; }
.form-group input::placeholder { color: rgba(255,255,255,0.25); }

.btn-enviar {
  margin-top: 8px; padding: 12px 28px;
  background: linear-gradient(135deg, #095472, #11a9b1);
  color: #fff; border: none; cursor: pointer;
  font-size: 12px; font-family: inherit; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px; transition: opacity 0.2s;
}
.btn-enviar:hover { opacity: 0.85; }

/* Contacto page specific */
.contacto-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 0;
}

.info-block { margin-bottom: 32px; }
.info-block h2 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #b8996e; margin-bottom: 12px;
}
.info-block p, .info-block a {
  font-size: 16px; color: #fff; text-decoration: none;
  display: block; margin-bottom: 6px; transition: color 0.2s;
  font-weight: 300;
}
.info-block a:hover { color: #11a9b1; }

/* =============================================
   MODAL
   ============================================= */
.modal {
  display: none; position: fixed; z-index: 200;
  inset: 0; overflow: auto;
  background: rgba(5,10,20,0.88);
  backdrop-filter: blur(8px);
}
.modal-content {
  max-width: 540px; margin: 7% auto;
  background: #111e30;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 36px 40px;
  position: relative; max-height: 82vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 22px; cursor: pointer;
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.modal-close:hover { color: #fff; }

.modal-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.modal-content p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 10px; }
.modal-content h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #b8996e;
  margin-top: 20px; margin-bottom: 6px;
}
.modal-content ul { padding-left: 0; margin-bottom: 10px; list-style: none; }
.modal-content ul li {
  font-size: 14px; color: rgba(255,255,255,0.7);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}
.modal-content ul li::before { content: '— '; color: #b8996e; }

#modal-actividades { margin-top: 14px; margin-bottom: 4px; }
#modal-actividades li::before { content: '→ '; }

.modal-mapa { margin: 16px 0; }
.modal-mapa iframe { border-radius: 3px; width: 100%; }

.btn-interesa {
  margin-top: 18px; width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #095472, #11a9b1);
  color: #fff; border: none; cursor: pointer;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: inherit; font-weight: 600;
  border-radius: 2px; transition: opacity 0.2s;
}
.btn-interesa:hover { opacity: 0.85; }

/* =============================================
   TOURS / XCARET / DISNEY / UNIVERSAL PAGES
   ============================================= */
.page-content { padding: 110px 60px 80px; max-width: 900px; margin: 0 auto; }

.page-content h1 { font-size: 40px; font-weight: 700; margin-bottom: 20px; }
.page-content h2 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #b8996e;
  margin-top: 32px; margin-bottom: 10px;
}
.page-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.page-content p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 10px; }
.page-content ul { padding-left: 0; list-style: none; margin-bottom: 10px; }
.page-content ul li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 5px 0; }
.page-content ul li::before { content: '→ '; color: #b8996e; }

.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px; overflow: hidden;
}

.info-card {
  background: #0b1a2b; padding: 24px 20px;
  transition: background 0.2s;
}
.info-card:hover { background: rgba(255,255,255,0.04); }
.info-card h3 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.info-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(7,13,22,0.9);
  flex-wrap: wrap; gap: 16px;
}

.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-left h4 {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.legal-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 12px;
  cursor: pointer; text-align: left; padding: 0;
  font-family: inherit; transition: color 0.2s;
}
.legal-btn:hover { color: #fff; text-decoration: underline; }

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

.social-links { display: flex; gap: 10px; }
.social-btn {
  padding: 7px 16px; border-radius: 2px;
  font-size: 11px; text-decoration: none;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.2s;
}
.social-btn:hover { color: #fff; border-color: rgba(255,255,255,0.45); }
.social-btn.fb { border-color: rgba(24,119,242,0.35); }
.social-btn.ig { border-color: rgba(225,48,108,0.35); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .header { padding: 0 30px; }
  .hero { padding: 100px 30px 60px; }
  .hero-title { font-size: 38px; }
  .section { padding: 70px 30px; }
  .section-promo { padding: 50px 30px; }
  .section-destinos { padding: 60px 30px; }
  .section-contacto { padding: 70px 30px; }
  .section-nosotros { padding: 90px 30px 50px; }
  .page-content { padding: 90px 30px 60px; }
  .contacto-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .contacto-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 24px 30px; }
  .promo-btn.left { left: -12px; }
  .promo-btn.right { right: -12px; }
}

@media (max-width: 600px) {
  .nav {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; top: 64px; left: 0; right: 0;
    background: #09121e; padding: 24px 30px;
    gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 14px; }
  .floating-card { min-width: 100%; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .grid-destinos { grid-template-columns: repeat(2, 1fr); }
  .destino-card-info h3 { font-size: 11px; }
  .footer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .info-cards { grid-template-columns: 1fr; }
}

/* =============================================
   ARTÍCULOS DE BLOG
   ============================================= */
.articulo-hero {
  height: 62vh; min-height: 400px;
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end;
  padding-top: 64px;
}
.articulo-hero-overlay {
  background: linear-gradient(to top, rgba(5,12,22,0.93) 0%, rgba(5,12,22,0.35) 55%, transparent 100%);
  padding: 48px 60px; width: 100%;
}
.articulo-hero-overlay h1 {
  font-size: 40px; font-weight: 700; line-height: 1.1;
  max-width: 780px; margin: 14px 0 10px;
}
.articulo-subtitle { font-size: 16px; color: rgba(255,255,255,0.68); font-weight: 300; }

.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.38); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #11a9b1; }

.articulo-body { max-width: 860px; margin: 0 auto; padding: 60px 60px 90px; }

.articulo-intro {
  font-size: 17px; line-height: 1.9; color: rgba(255,255,255,0.8);
  margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.articulo-quick-info {
  display: flex; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; overflow: hidden; margin-bottom: 56px;
}
.qi-item {
  flex: 1; padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.qi-item:last-child { border-right: none; }
.qi-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #b8996e; margin-bottom: 6px; }
.qi-value { font-size: 14px; font-weight: 500; }

.itinerario-titulo { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #b8996e; margin-bottom: 32px; }

.dia { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.dia:last-child { border-bottom: none; }
.dia-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.dia-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #11a9b1; background: rgba(17,169,177,0.1); border: 1px solid rgba(17,169,177,0.25);
  padding: 4px 12px; border-radius: 2px; white-space: nowrap;
}
.dia-header h3 { font-size: 20px; font-weight: 600; }
.dia-img { width: 100%; height: 280px; object-fit: cover; border-radius: 3px; margin-bottom: 20px; display: block; }
.dia p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 12px; }
.dia ul { list-style: none; padding: 0; margin: 14px 0; }
.dia ul li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); line-height: 1.6; }
.dia ul li::before { content: '→ '; color: #b8996e; }

.tips-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09); border-radius: 3px; padding: 36px 40px; margin-top: 48px; }
.tips-section h2 { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #b8996e; margin-bottom: 24px; }
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tip-item h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.tip-item p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; }

.articulo-cta { margin-top: 60px; text-align: center; padding: 52px 40px; border: 1px solid rgba(17,169,177,0.2); border-radius: 3px; background: rgba(17,169,177,0.04); }
.articulo-cta h3 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.articulo-cta p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 26px; }
.btn-articulo-cta { display: inline-block; padding: 13px 34px; background: linear-gradient(135deg, #095472, #11a9b1); color: #fff; text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; transition: opacity 0.2s; }
.btn-articulo-cta:hover { opacity: 0.85; }

/* Circuits */
.circuito-ruta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.ruta-ciudad { padding: 6px 16px; background: rgba(184,153,110,0.1); border: 1px solid rgba(184,153,110,0.3); border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #b8996e; }
.ruta-flecha { color: rgba(255,255,255,0.3); font-size: 18px; }

.destino-bloque { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.destino-bloque:last-child { border-bottom: none; }
.destino-bloque h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #11a9b1; margin-bottom: 10px; }

@media (max-width: 768px) {
  .articulo-hero { height: 50vh; min-height: 320px; }
  .articulo-hero-overlay { padding: 28px 24px; }
  .articulo-hero-overlay h1 { font-size: 26px; }
  .articulo-body { padding: 36px 20px 60px; }
  .articulo-quick-info { flex-wrap: wrap; }
  .qi-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .tips-grid { grid-template-columns: 1fr; }
  .dia-img { height: 200px; }
}

/* =============================================
   LOGO AS LINK
   ============================================= */
a.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #075e54, #25d366);
  color: #fff;
  text-decoration: none;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: #fff;
}
.wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .wa-float {
    bottom: 18px;
    right: 14px;
    padding: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .wa-float span { display: none; }
  .wa-float svg { width: 26px; height: 26px; }
}
