.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;              /* altura fija del menú */
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;       /* centra verticalmente */
  justify-content: space-between;
  padding: 0 24px;           /* quitamos padding vertical */
  z-index: 1000;
}
.logo img {
  height: 180px;
  width: auto;
  margin-top: 6px;
  margin-left: -30px;
}
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}
.menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.menu li a:hover {
  color: #c40000;
}
html {
  scroll-behavior: smooth;
}
* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.hero {
  position: relative;
  height: 100vh;
  background: url('../img/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* opacidad */
  z-index: 1;
}
/* Contenido encima */
.overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 900px;
}
.btn {
  background: #111;
  color: #fff;
  padding: 15px 30px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #25d366; /* WhatsApp green */
  color: #fff;
  transform: translateY(20px);
}
section {
  padding: 60px 20px;
  text-align: center;
}
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background: #111;
  color: #fff;
  padding: 40px;
  width: 280px;
  border-radius: 10px;
}

.services {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
}

.services-header p {
  color: #555;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #111;
}

.service-desc {
  color: #555;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #333;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: bold;
}

.btn-service {
  margin-top: auto;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-service:hover {
  background-color: #333;
}

/* Paquete destacado */
.featured {
  border: 2px solid #111;
  transform: scale(1.03);
}

.btn-featured {
  background-color: #25d366;
  color: #111;
}

.btn-featured:hover {
  background-color: #1ebe5d;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #111;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 20px;
}
.price-block {
  background: #f5f5f5;
  padding: 18px;
  border-radius: 12px;
  margin: 20px 0;
}

.price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
  font-weight: 600;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.monthly {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}

.currency {
  font-size: 1rem;
  vertical-align: top;
}

.period {
  font-size: 0.85rem;
  color: #666;
  margin-left: 4px;
}

.featured-price {
  color: #25d366;
}
.cancel-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #25d366;
  font-weight: 600;
}

.portfolio {
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.portfolio-sub {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.portfolio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 10px 20px rgba(0,0,0,0.08),
    0 6px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.15),
    0 10px 10px rgba(0,0,0,0.08);
}

.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-content {
  padding: 25px;
  text-align: left;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.portfolio-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-portfolio {
  display: inline-block;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-portfolio:hover {
  background: #25d366; /* WhatsApp green */
  color: #fff;
  transform: translateY(-2px);
}

.contacto {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 90px 20px;
}

.contacto-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.contacto-info h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.contacto-info p {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.contacto-beneficios {
  list-style: none;
  padding: 0;
}

.contacto-beneficios li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contacto-cta {
  background: #fff;
  color: #111;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.3);
}

.btn-whatsapp {
  display: inline-block;
  width: 100%;
  padding: 16px;
  background: #25d366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

.contacto-nota {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
}

.footer {
  background: #0b0b0b;
  color: #ccc;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #aaa;
}

.footer-social h4 {
  color: #fff;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #25d366;
  transform: translateY(-3px);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #666;
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(253, 255, 254, 0.65);
}

.packages-note {
  max-width: 900px;
  margin: 0px auto 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 20px;
}

.quienes-texto p {
  color: #312f2f;
  line-height: 1.7;
  margin-bottom: 15px;
  margin-top: 15px;
}

.h2_titulo {
  margin-top:15px;
}

/* Imagen */
.quienes-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(196, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .quienes-grid {
    grid-template-columns: 1fr;
  }

  .quienes-img {
    order: -1;
  }
}

/* Navbar base */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  z-index: 1000;
}

/* Menú desktop */
.menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu li a:hover {
  color: #30b161;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}


/*Para Movil*/
@media (max-width: 900px) {

  /* mostrar hamburguesa */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
  }

  /* ocultar menú por defecto */
  .menu {
    display: none;              /* 🔑 CLAVE */
    position: fixed;
    top: 64px;                  /* coincide con altura del navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #000;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 25px;
    z-index: 10000;
  }

  /* mostrar solo cuando está activo */
  .menu.active {
    display: flex;
  }

  /* ==== ANIMACIÓN HAMBURGUESA (NO INVADE ESTILOS) ==== */

  .menu-toggle span {
    transition: transform 0.35s ease, opacity 0.25s ease;
  }

  /* cuando está activo */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ===== GALERÍA DE VIDEOS ===== */

.galeria {
  padding: 80px 10%;
  background: #0b0b0b;
  text-align: center;
}

.galeria h2 {
  color: #fff;
  margin-bottom: 40px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.video-card {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(200,0,0,0.4); /* glow rojo norteño */
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* ===== HERO SLIDER ===== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* capa del slider */
.hero-slider {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

/* overlay oscuro pro */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* contenido */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
