* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body, #app {
  height: 100%;
}
body {
  font-family: 'Gotham', 'Lato', 'Raleway', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* Intro */
.intro-section {
  width: 100%;
  position: relative;
  background: #000;
  z-index: 50;
  transition: opacity 1s ease, visibility 1s ease, height 1s ease;
}
.intro-section video {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  display: block;
  background: #000;
}
.intro-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  pointer-events: none;
}
.intro-overlay button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #000;
  cursor: pointer;
  margin: 0.5rem;
  pointer-events: none;
}
.intro-section.hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

/* Background video */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.bg-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  background: #000;
}
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.6));
  z-index: 0;
  pointer-events: none;
}

/* Hero */
.hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero.show { opacity: 1; }
.hero-inner { max-width: 960px; }
h1 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin-bottom: .5rem;
}
p.lead {
  opacity: .9;
  margin: 24px 0 1.2rem;
  font-size: 20px;
}

/* Texto inferior intro */
.intro-bottom-text {
  position: absolute;
  bottom: calc(2rem + 5vh);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

/* WhatsApp bar */
#whatsappBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .8rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
#whatsappBar a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  background: #25D366;
  padding: .5rem 1rem;
  border-radius: 50px;
  transition: transform .2s ease, background .2s ease;
}
#whatsappBar a:hover {
  background: #20b955;
  transform: scale(1.05);
}

/* Secciones */
.steps, .tarifas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.step, .plan {
  background: #222;
  border-radius: 12px;
  padding: 10px;
  max-width: 250px;
}
.testimonios blockquote {
  font-style: italic;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 600px;
}

.cta {
  background: #25D366;
  color: #111;
  font-size: 1.3rem;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-family: 'Gotham', 'Lato', 'Raleway', sans-serif;
}

/* Secciones superiores */
#sobre, #testimonios, #tarifa {
  color: #fff !important;
  font-size: 24px;
  font-family: 'Gotham', 'Lato', 'Raleway', sans-serif;
}
#sobre h2, #sobre p,
#testimonios h2, #testimonios p,
#tarifa h2, #tarifa p{
  color: #ffffff;
  font-size: 22px;
}
#sobre a, #testimonios a, #tarifa a {
  color: #fff;
  text-decoration: none;
}

/* Ofertas */
.offers-section {
  padding: 2rem 1rem 4rem;
  display: flex;
  justify-content: center;
}
.offers-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 1000px;
  width: 90%;
}
@media(min-width:750px) {
  .offers-grid { grid-template-columns: repeat(3,1fr); }
}
.offer-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.offer-card:hover,
.offer-card.active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.offer-card.featured {
  transform: scale(1.08);
  border: 2px solid #25D366;
  z-index: 1;
}
.offer-card.featured:hover,
.offer-card.featured.active {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}
.offer-thumb {
  position: relative;
  width: 150px;
  height: 130px;
  margin-bottom: 1rem;
}
.offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
}
.offer-thumb span {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: #25D366;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.offer-title { font-size: 1.2rem; font-weight: bold; margin-bottom: .5rem; }
.offer-price { font-size: 1rem; opacity: .7; text-decoration: line-through; }
.offer-discount { font-size: 1.6rem; font-weight: bold; color: #25D366; margin: .5rem 0 1rem; }
.offer-card button {
  background: #25D366;
  color: #fff;
  border: none;
  padding: .8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
  margin-top: .5rem;
}
.offer-card button:hover { background: #20b955; transform: scale(1.05); }
.offer-card button:active { transform: scale(0.97); }

/* Menú hamburguesa */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s;
}
.hamburger:hover { background-color: #20b955; }
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 200px;
  height: 70%;
  background: #111;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  padding-top: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity:0.8;
}
.sidebar.open { right: 0; }
.sidebar a {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-radius: 8px;
}
.sidebar a:hover {
  background-color: #25D366;
  color: #fff;
}

/* Footer */
footer {
  padding: 1rem;
  text-align: center;
  font-size: .85rem;
  opacity: 1;
  width:100%;
}

/* Gallery */
.gallery-wrap {
  padding: 1rem 1rem 4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  justify-content: center;
}
.gallery-wrap.show { opacity: 1; }

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 90%;
  max-width: 100%;
}

.grid1 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 90%;
  max-width: 100%;
}

@media(min-width:750px) {
  .grid { grid-template-columns: repeat(3,1fr); }
}

.grid1 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 90%;
  max-width: 100%;
}
@media(min-width:750px) {
  .grid1 { grid-template-columns: repeat(2,1fr); }
}


.thumb:hover video { transform: scale(1.05); }
.thumb .meta {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(0,0,0,0.45);
  padding: 4px 6px;
  border-radius: 6px;
  font-size: .75rem;
}
.thumb:focus {
  outline: 3px solid rgba(255,255,255,0.12);
  outline-offset: 3px;
}

.thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  background: #111;
  
  /* Mantener proporción retrato */
  aspect-ratio: 4 / 4;
  width: 100%; /* o 85%, depende del layout */
  
  display: flex;
  flex-direction: column; /* video arriba, meta y caption debajo */
}

.thumb video {
  width: 100%;
  height: 100%; /* importante para respetar aspect-ratio */
  flex-grow: 1;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
  transition: transform .35s ease;
  background: #000;
}

@media(min-width:750px) {
  .thumb { width: 80%; }
}

/* Meta ocupa todo el ancho justo debajo del video */
/* Meta centrado en la parte inferior */
.thumb .meta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  background: rgba(20, 20, 20, 0.65); /* gris oscuro translúcido */
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 0 0 6px 6px;
}

/* Caption elegante debajo del meta */
.thumb .caption {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.9rem;
  color: #eee;
  line-height: 1.5;
  text-align: center;
  background: rgba(20, 20, 20, 0.65); /* gris oscuro ligeramente más claro que el meta */
  backdrop-filter: blur(6px); /* efecto moderno */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 12px 12px;
  display:none;
}


/* Miniatura en la esquina */
.thumb .poster-mini {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 120px;          /* tamaño miniatura */
  height: 100px;         /* ajusta a tu gusto */
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
  z-index: 2;
}
.thumb .poster-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight {
  background: rgba(0, 0, 0, 0.6); /* fondo oscuro translúcido */
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.ventajas {
  list-style: none;       /* quitar viñetas por defecto */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;              /* espacio entre ítems */
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #fff;            /* texto blanco, puedes cambiarlo */
}

.ventajas li {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1); /* fondo semi-transparente */
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.3s;
}

.ventajas li:hover {
  background: rgba(255, 255, 255, 0.2); /* efecto hover sutil */
}

.ventajas li::before {
  content: ""; /* si quieres usar iconos de imagen aquí, se puede */
  margin-right: 8px;
}

#faq {
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
}

#faq h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

#faq details {
  background: #222;
  margin: 15px auto;
  padding: 15px 20px;
  border-radius: 12px;
  max-width: 600px;
  text-align: left;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

#faq details:hover {
  background: #333;
  transform: scale(1.02);
}

#faq summary {
  font-size: 1.2rem;
  font-weight: bold;
  outline: none;
  list-style: none;
}

#faq summary::marker {
  display: none;
}

#faq details[open] summary {
  color: #eee;
}

#faq p {
  font-size: 20px;
  margin-top: 10px;
  line-height: 1.5;
  color:#aaa;
}

/*footer*/

.site-footer {
  background: rgba(17, 17, 17, 0.9); /* fondo negro semitransparente */
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  width: 100%; /* ocupa todo el ancho */
  box-sizing: border-box;
  padding-bottom:0px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about, .footer-links, .footer-social {
  flex: 1 1 250px;
}

.footer-about h3,
.footer-links h3,
.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #25D366; /* color destacado */
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #0ff;
  text-shadow: 0 0 8px #0ff; /* efecto glow al pasar el mouse */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}
/* === CERTIFICACIONES === */
.footer-certificaciones {
  text-align: center;
  flex-basis: 100%;
  margin-top: 20px;
}

.cert-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.cert-logos img {
  height: 50px;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cert-logos img:hover {
  transform: scale(1.1);
  filter: brightness(1);
}

/* === RESEÑAS === */
.footer-reviews {
  width:85%;
  flex-basis: 100%;
  text-align: center;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px #25D366;
}

.footer-reviews h3 {
  color: #ffbf00;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer-reviews p {
  color: #ddd;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-reviews .stars {
  color: #ffbf00;
  font-size: 1.2rem;
  margin: 10px 0;
}

.footer-reviews .stars span {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-reviews .review-quote {
  font-style: italic;
  color: #aaa;
  margin: 10px auto;
  max-width: 600px;
}

.btn-reviews {
  display: inline-block;
  margin-top: 10px;
  background-color: #ffbf00;
  color: #111;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-reviews:hover {
  background-color: #e5a800;
  transform: scale(1.05);
}