/* ============================================
   GOBNB – STYLESHEET  |  Branding Rosado
   ============================================ */

:root {
  --rosado: #e91e8c;
  --rosado-dark: #c4157a;
  --rosado-light: #ff4da6;
  --rosado-bg: #fff0f8;
  --dark: #111827;
  --dark2: #1f2937;
  --text: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg: #f9fafb;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(233,30,140,0.10);
  --shadow-dark: 0 8px 32px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ── BUTTONS ── */
.btn-rosado {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--rosado);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-rosado:hover {
  background: var(--rosado-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,0.35);
}
.btn-rosado.btn-full { width: 100%; }
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: var(--rosado-bg);
  color: var(--rosado);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag.rosado { background: rgba(233,30,140,0.15); color: var(--rosado); }
.section-header h2 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}



/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  padding: 10px 0;
}
.nav-wrap {
  max-width: 1160px;
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-img {
  height: 40px;      
  width: auto;       
  object-fit: contain;
  transition: 0.3s ease;
}

/* opcional hover */
.logo-img:hover {
  transform: scale(1.05);
}


.navbar.scrolled .logo-img {
  filter: brightness(0); 
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links li a {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.navbar.scrolled .nav-links li a { color: var(--dark); }
.nav-links li a:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-links li a:hover { background: var(--bg); }
.nav-btn-cta {
  background: var(--rosado) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
}
.nav-btn-cta:hover {
  background: var(--rosado-dark) !important;
  box-shadow: 0 4px 16px rgba(233,30,140,0.4) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 4px; transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }

.hero-trust img {
  height: 20px;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.7;
  transition: 0.3s;
}

.hero-trust img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}


.hero-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;

  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;

  transform: translateX(-85px); 
}

/* TODOS LOS LOGOS */
.hero-logos img {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(40%) brightness(2.2);
  transition: 0.3s ease;
}
.hero-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: 60px;
  max-width: fit-content;
  transform: none;
}

.hero-logos img[alt="Booking"],
.hero-logos img[alt="VRBO"] {
  height:60px;  
}

/* HOVER */
.hero-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  
  background:
    linear-gradient(135deg, rgba(10,10,20,0.82) 0%, rgba(30,10,40,0.75) 100%),
    url('../img/Banner_Principal.jpg') center/cover no-repeat;
  display: flex; flex-direction: column;
  padding-top: 90px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(233,30,140,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-container {
  flex: 1;
  max-width: 1160px; margin: 0 auto; width: 100%; padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-accent { color: var(--rosado); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta-block {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-cta-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.5;
}
.hero-cta-text strong { color: var(--white); display: block; }



/* Hero Form */
.hero-form-wrap { position: relative; z-index: 2; }
.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-title {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.fgroup { margin-bottom: 14px; }
.fgroup input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.fgroup input:focus {
  border-color: var(--rosado);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
  background: var(--white);
}
.fgroup input::placeholder { color: var(--text-muted); }

/* Hero Stats Bar */
.hero-stats-bar {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
  padding: 28px 24px;
}
.hstat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hstat strong {
  font-family: var(--font);
  font-size: 2rem; font-weight: 900;
  color: var(--rosado);
}
.hstat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-align: center; }
.hstat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Form success */
.form-success {
  text-align: center; padding: 24px 10px;
}
.form-success i { font-size: 2.5rem; color: #16a34a; margin-bottom: 12px; }
.form-success p { font-weight: 600; color: var(--dark); }
.hidden { display: none !important; }

.fgroup select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.fgroup select:focus {
  border-color: var(--rosado);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
  background: var(--white);
}

.form-headline {
  text-align: left;
  margin-bottom: 18px;
}

.form-headline h3 {
  font-family: var(--font);
  font-size:  1,3rem;
  font-weight: 800;
  color: #0d0520;
  line-height: 1.3;
  letter-spacing: 0.5px;

  text-transform: none; 
}


.highlight-rosado {
  color: var(--rosado);
  font-size: 1.2em; 
  font-weight: 900;
  text-transform: 
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 99999;

  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  border-left: 5px solid #16a34a;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  font-size: 1.5rem;
  color: #16a34a;
}

.toast strong {
  display: block;
  font-size: 14px;
}

.toast p {
  margin: 0;
  font-size: 13px;
  color: #555;
}
/* OFRECEMOS SLIDER */
.ofrecemos { padding: 80px 0; }
.slider-wrapper { width: 100%; position: relative; overflow: hidden; }
.slider-track-outer { overflow: hidden; width: 100%; }
.slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.slider-track .ocard {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.slider-dot.active { background: var(--rosado); width: 28px; border-radius: 4px; }
@media (max-width: 768px) {
  .slider-track .ocard {
    flex: 0 0 calc(100vw - 48px);
    width: calc(100vw - 48px);
  }
  .slider-track {
    padding: 8px 24px;
    gap: 16px;
  }
}
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--rosado);
  width: 28px;
  border-radius: 4px;
}
.ocard {
  background: linear-gradient(135deg, #e91e8c 0%, #c4157a 100%);
  border-radius: 20px;
  padding: 36px 28px;

  /* 🔥 CAMBIOS */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 260px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(233,30,140,0.25);
  cursor: pointer;
}

.ocard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(233,30,140,0.45);
}

.ocard-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  color: var(--white);

  /* 🔥 CLAVE */
  margin: 0 auto 20px auto;
}
.ocard h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.ocard p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}
  /* ═══════════════════════════════════════════
    GALERÍA 6 IMÁGENES GRID
  ═══════════════════════════════════════════ */
  .galeria { padding: 0; 
   display: block !important;}
  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 0;
  }
  .galeria-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .galeria-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    /* Mientras no hay imagen, fondo placeholder */
    background: #1f2937;
    min-height: 120px;
  }
  .galeria-item:hover img {
    transform: scale(1.07);
  }
  .galeria-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 28px;
    transition: var(--transition);
  }
  .galeria-item:hover .galeria-overlay {
    background: linear-gradient(to top, rgba(233,30,140,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  }
  .galeria-titulo {
    font-family: var(--font);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.08em;
    text-shadow:
      0 2px 8px rgba(0,0,0,0.8),
      0 0 30px rgba(0,0,0,0.6),
      2px 2px 0 rgba(0,0,0,0.5);
    line-height: 1.2;
  }
  .galeria-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .btn-principal {
    background: var(--rosado);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(233,30,140,0.4);
  }

  .btn-principal:hover {
    background: var(--rosado-dark);
    transform: translateY(-2px);
  }

  .btn-secundario {
    background: transparent;
    color: var(--rosado);
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--rosado);
    transition: var(--transition);
  }

  .btn-secundario:hover {
    background: var(--rosado);
    color: var(--white);
    transform: translateY(-2px);
  }

/* ═══════════════════════════════════════════
   SOBRE / PARTNER IDEAL
═══════════════════════════════════════════ */

.sobre {
  padding: 100px 0;
  background: var(--dark);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

/* FOTO */
.sobre-foto,
.sobre-img-col img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

/* TEXTO */
.sobre-title {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sobre-bio {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   BADGES PLATAFORMAS (FIX PRINCIPAL)
═══════════════════════════════════════════ */

.sobre-plataformas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 420px; 
}

.plataforma-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
}

.plataforma-badge img {
  max-width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}


.plataforma-badge img:first-child {
  max-width: 65px;
}

.plataforma-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* TAGS */
.plataforma-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ptag {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 50px;
}

.ptag.genius {
  background: rgba(0,90,180,0.35);
  color: #90c8ff;
}

/* RATING */
.estrellas {
  color: #fbbf24;
  font-size: 0.7rem;
  margin-right: 4px;
}

.rating-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

.rating-text strong {
  color: #fff;
}

/* ═══════════════════════════════════════════
   BADGES PERSONALES
═══════════════════════════════════════════ */

.sobre-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.sbadge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sbadge i {
  color: var(--rosado);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sbadge strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.sbadge span {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-plataformas {
    max-width: 100%;
  }
}


/* ═══════════════════════════════════════════
   SERVICIOS DETALLE
═══════════════════════════════════════════ */
.servicios { padding: 100px 0; background: var(--white); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.scard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.scard:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(233,30,140,0.2);
  background: var(--white);
}
.scard-icon {
  width: 54px; height: 54px;
  background: var(--rosado-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--rosado);
  margin: 0 auto 16px;
}
.scard h3 {
  font-family: var(--font);
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.scard p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   VIDEO + FAQ LADO A LADO
═══════════════════════════════════════════ */
.video-faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.video-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.video-col .video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  aspect-ratio: 16/9;
  width: 100%;
}
.video-col .video-wrap iframe {
  width: 100%; height: 100%;
}
.faq-col .faq-list {
  max-width: 100%;
}
 
/* Responsive nuevas secciones */
@media (max-width: 900px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 260px);
  }
  .video-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .slider-track .ocard {
    min-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .galeria-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 240px);
  }
  .slider-track .ocard {
    min-width: 100%;
  }
}

/* ═══════════════════════════════════════════
   FAQ / DUDAS
═══════════════════════════════════════════ */
.faq { padding: 100px 0; background: var(--white); }
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--rosado); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}
.faq-item.open .faq-question { color: var(--rosado); }
.faq-icon {
  color: var(--rosado);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer { max-height: 300px; }


/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  padding: 100px 0;
  background: url('../img/Fondo_Banner2.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 30, 0.75); /* 🔥 overlay oscuro */
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
}
.cta-sub {
  color: var(--rosado) !important;
  font-weight: 700;
  font-size: 1.1rem !important;
  margin-top: 8px;
}
.cta-btns {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.footer-logo .logo-text { color: var(--white); }
.footer-links-row { display: flex; gap: 24px; }
.footer-links-row a {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links-row a:hover { color: var(--rosado); }
.footer-copy {
  color: rgba(255, 255, 255, 0.766);
  font-size: 0.8rem;
}
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  width: 70%;     
  max-width: 70%;
  height: auto;     
  object-fit: contain;
}

.footer-logo img {
  width: 160px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}


.g-recaptcha {
  transform: scale(0.9);
  transform-origin: left top;
}
.captcha-wrap {
  overflow: hidden;
}
@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.75);
  }
}

.stats-mini {
  padding: 40px 0;
  background: #fff;
}

.stats-mini-inner {
  max-width: 900px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 25px;

  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 20px;
}

/* IMAGEN PEQUEÑA */
.stats-mini-img {
  flex: 0 0 120px;
}

.stats-mini-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

/* CONTENIDO DERECHA */
.stats-mini-content {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* BLOQUES */
.stat-mini {
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-mini:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #eee;
}

.stat-mini h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rosado);
  margin: 0;
}

.stat-mini p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-mini-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-mini-img {
    flex: none;
  }

  .stats-mini-content {
    width: 100%;
    margin-top: 15px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ofrecemos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logos { transform: translateX(20px); }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr !important; gap: 40px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-placeholder { aspect-ratio: 3/2; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 260px); }
  .video-faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-logos { transform: none !important; justify-content: center; flex-wrap: wrap; }
  .ofrecemos-grid,
  .servicios-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px 24px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { color: var(--dark) !important; }
  .hamburger { display: flex; }
  .ofrecemos-grid { grid-template-columns: 1fr; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats-bar { gap: 24px; }
  .hstat-divider { display: none; }
  .hero-logos { transform: translateX(0); justify-content: center; max-width: 100%; }
  .logo-item img { height: 22px; }
  .logo-item img[alt="Booking"],
  .logo-item img[alt="VRBO"] { height: 28px; }
}

@media (max-width: 480px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .hero-cta-block { flex-direction: column; align-items: flex-start; }
  .galeria-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 240px); }
  .logo-item img { height: 18px; }
  .logo-item img[alt="Booking"],
  .logo-item img[alt="VRBO"] { height: 22px; }
}
@media (max-width: 768px) {
  .slider-wrapper {
    overflow: hidden;
  }
  .slider-track {
    gap: 0;
    padding: 0;
  }
  .slider-track .ocard {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    border-radius: 16px;
  }
  .ofrecemos .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .hero-logos {
    margin-left: 0;
    justify-content: center;
    max-width: 100%;
    transform: none;
  }
}
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr !important;
    padding: 24px 16px;
    gap: 32px;
  }

  .hero-form-wrap {
    width: 100%;
    max-width: 100%;
  }

  .hero-form-card {
    padding: 24px 20px;
    width: 100%;
    box-sizing: border-box;
  }
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

  .hero-logos {
    transform: none !important;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ofrecemos-grid,
   {
    grid-template-columns: 1fr !important;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800;900&display=swap');

/* ==============================
   BANNER
============================== */
.gobnb-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gobnb-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.gobnbrent.com/img/Banner_consultoria_bnb.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.gobnb-banner:hover .gobnb-banner-bg { transform: scale(1.03); }

.gobnb-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(26,26,46,0.93) 0%,
    rgba(26,26,46,0.75) 50%,
    rgba(233,30,140,0.18) 100%
  );
  z-index: 1;
}

.gobnb-banner-content {
  position: relative;
  z-index: 3;
  padding: 0 72px 80px;
}

.gobnb-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.gobnb-eyebrow-line {
  width: 32px;
  height: 2px;
  background: #e91e8c;
}

.gobnb-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e91e8c;
}

.gobnb-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 900;
  -webkit-text-stroke: 0.5px #fff;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.gobnb-accent { color: #e91e8c; display: block; }

.gobnb-banner-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Stats strip */
.gobnb-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  border-top: 1px solid rgba(233,30,140,0.15);
  background: rgba(26,26,46,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gobnb-stat {
  flex: 1;
  padding: 18px 28px;
  border-right: 1px solid rgba(233,30,140,0.1);
}
.gobnb-stat:last-child { border-right: none; }

.gobnb-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #e91e8c;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.gobnb-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==============================
   CONTENT SECTION
============================== */
.gobnb-content {
  background: #ffffff;
  padding: 90px 72px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.gobnb-content-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Badge */
.gobnb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fce8f3;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e91e8c;
  margin-bottom: 20px;
}

.gobnb-content-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 900;
  -webkit-text-stroke: 0.5px #1a1a2e;
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 18px;
}

.gobnb-content-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #e91e8c;
  line-height: 1.5;
  margin-bottom: 20px;
}

.gobnb-content-desc {
  font-size: 15px;
  color: #5a5a72;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* Checks */
.gobnb-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.gobnb-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #3d3d55;
  line-height: 1.6;
}

.gobnb-check-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: #fce8f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.gobnb-check-icon svg { width: 11px; height: 11px; }

/* Button */
.gobnb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e91e8c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}

.gobnb-btn:hover {
  background: #ff2fa0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.45);
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ==============================
   SECCIÓN
============================== */
.gobnb-section {
  background: #ffffff;
  padding: 90px 72px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* HEADER */
.gobnb-header {
  text-align: center;
  margin-bottom: 60px;
}

.gobnb-badge {
  display: inline-flex;
  align-items: center;
  background: #fce8f3;
  border-radius: 50px;
  padding: 7px 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e91e8c;
  margin-bottom: 18px;
}

.gobnb-badge::after {
  content: '';
  display: none;
  width: 20px;
  height: 2px;
  background: #e91e8c;
  border-radius: 2px;
}

.gobnb-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 47px;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.08;
  -webkit-text-stroke: 0.5px #1a1a2e;
}

/* BODY 2 cols */
.gobnb-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* IMAGEN */
.gobnb-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(233,30,140,0.12);
}

.gobnb-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.gobnb-img-wrap:hover img {
  transform: scale(1.03);
}

/* CONTENIDO */
.gobnb-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.gobnb-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: #e91e8c;
  line-height: 1.5;
}

.gobnb-desc {
  font-size: 15px;
  color: #5a5a72;
  line-height: 1.85;
}

/* CHECKS */
.gobnb-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gobnb-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #3d3d55;
  line-height: 1.6;
}

.gobnb-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #fce8f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.gobnb-check-icon svg { width: 11px; height: 11px; }

/* BOTÓN */
.gobnb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e91e8c;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}

.gobnb-btn:hover {
  background: #ff2fa0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.45);
}

/* ANIMACIONES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.gobnb-header   { animation: fadeUp    0.7s ease both; }
.gobnb-img-wrap { animation: fadeLeft  0.7s 0.2s ease both; }
.gobnb-right    { animation: fadeRight 0.7s 0.3s ease both; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gobnb-section { padding: 70px 40px; }
  .gobnb-main-title { font-size: 42px; }
  .gobnb-body { gap: 40px; }
}

@media (max-width: 768px) {
  .gobnb-section { padding: 60px 24px; }
  .gobnb-body { grid-template-columns: 1fr; }
  .gobnb-main-title { font-size: 34px; }
}

@media (max-width: 480px) {
  .gobnb-section { padding: 50px 18px; }
  .gobnb-main-title { font-size: 28px; }
  .gobnb-btn { width: 100%; justify-content: center; }
}

.jp-banner-reserva {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 72px;
  background: #fff;
}

.jp-banner-reserva-inner {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}

.jp-banner-reserva-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .jp-banner-reserva { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .jp-banner-reserva { padding: 16px 12px; }
}