 /* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  padding-top: 70px; /* 👈 evita que el contenido quede debajo del nav fijo */
}
 
.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
 
h1, h2 {
  color: #333;
}
 
/* Hero Section */
.hero {
  background: 
    /* linear-gradient(to right, rgba(11,67,152,0.55), rgba(78,192,231,0.55)), */
    url('../img/netpanal-bannerprincipal.png') center center no-repeat;
  background-size: cover; /* 👈 cubre todo sin deformarse */
  background-attachment: fixed; /* 👈 efecto parallax ligero (opcional) */
  color: white;
  text-align: center;
  min-height: 100vh; /* 👈 ocupa alto completo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.hero h1 {
  font-size: 3rem;
  margin-top: 360px;
  margin-bottom: 18px;
}
 
.hero p {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
 
/* Ajustes responsive del Hero */
@media (max-width: 992px) {
  .hero {
    padding: 80px 20px;
    background-size: cover; /* 👈 siempre cubre */
  }
 
  .hero h1 {
    font-size: 2.2rem;
  }
 
  .hero p {
    font-size: 1.2rem;
  }
}
 
@media (max-width: 576px) {
  .hero {
    padding: 60px 15px;
    background-size: cover; /* 👈 siempre cubre */
  }
 
  .hero h1 {
    font-size: 1.8rem;
  }
 
  .hero p {
    font-size: 1rem;
  }
}
 
.cta {
  background-color: #ff9900;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
 
.cta:hover {
  background-color: #ff6600;
}
 
/* Sección de contenido */
.section {
  padding: 60px 0;
}
 
.section ul {
  list-style: none;
  margin-bottom: 20px;
}
 
.section ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
 
/* --- Contrataciones: Ajustes de estilo --- */
#plan-suscripcion table th,
#plan-suscripcion table td {
  text-align: center;
  vertical-align: middle;
}
 
#plan-suscripcion table .plan-name {
  text-align: center;
  font-weight: bold;
}
 
#plan-suscripcion .table-responsive {
  overflow-x: auto;
}
 
#plan-suscripcion ul {
  padding-left: 0;
  list-style-position: inside;
  text-align: center;
}
 
/* Mejora visual de observaciones clave en móvil */
@media (max-width: 768px) {
  #plan-suscripcion table {
    font-size: 0.9rem;
  }
 
  #plan-suscripcion h4 {
    font-size: 1.2rem;
  }
 
  #plan-suscripcion ul li {
    font-size: 1rem;
  }
 
  #plan-suscripcion .btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}
 
.testimonios {
  display: flex;
  gap: 30px;
  justify-content: center;
}
 
.testimonio img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
 
.testimonio {
  text-align: center;
}
 
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}
 
footer ul {
  list-style: none;
  margin-bottom: 10px;
}
 
footer ul li {
  display: inline;
  margin-right: 20px;
}
 
footer .cta-final {
  margin-top: 20px;
}
 
@media (max-width: 768px) {
  .testimonios {
    flex-direction: column;
    align-items: center;
  }
}
 
/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
 
.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  text-decoration: none;
  color: white;
}
 
body,
html {
  overflow-x: visible !important;
  overflow-y: auto !important;
}
 
.navbar.sticky-top {
  top: 0;
  z-index: 1050;
  background-color: #fff; /* Asegúrate que tenga un fondo sólido */
}
 
/* Estilos para sección módulos que integra la plataforma */
#hanging-icons .feature-icon {
  background: transparent !important; /* Asegura que el fondo del ícono sea transparente */
}
 
#hanging-icons .bi {
  background: transparent; /* Elimina cualquier fondo alrededor del ícono SVG */
  fill: #000000; /* Asegura que el ícono SVG tenga un color predeterminado (por ejemplo, negro) */
  display: block;
  margin: 0 auto;
}
 
#hanging-icons .feature h3 {
  color: #0056b3; /* Ajusta el color del texto a un tono azul específico */
}
 
#hanging-icons .icon-link {
  color: #0056b3;
  text-decoration: none;
}
 
#hanging-icons .icon-link:hover {
  text-decoration: underline;
}
 
/* Separadores "|" entre elementos del navbar */
.nav-segmentos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
 
.nav-segmentos .nav-item {
  display: inline-flex;
  align-items: center;
}
 
.nav-segmentos .nav-item:not(:last-child)::after {
  content: "|";
  margin: 0 0.5rem;
  color: #888;
  font-weight: normal;
  line-height: 1;
}
 
/* Subrayar el menú */
.navbar-nav .nav-link:hover {
  text-decoration: underline;
}
