/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3, h4 {
  margin: 0;
}

/* Header */
.header {
  background-color: #1d619e;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  height: 50px;
}

.nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav ul li {
  margin: 0 15px;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background-color: #FFA500;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #FF8000;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #FFA500;
  color: #FFA500;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background-color: #FFA500;
  color: #fff;
}

/* Hero Section */
.hero {
  background: url('image/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 span {
  color: #FFA500;
}

.hero .cta-buttons {
  margin-top: 20px;
}

/* Paquetes Section */
.paquetes {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.paquetes-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.paquete-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.paquete-card h3 {
  color: #1d619e;
}

.paquete-card .precio {
  font-size: 1.5rem;
  color: #FFA500;
  margin: 15px 0;
}

/* Características Section */
.caracteristicas {
  background-color: #1d619e;
  color: #fff;
  padding: 60px 20px;
}

.features-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-item {
  text-align: center;
  width: 200px;
}

.feature-item img {
  height: 100px;
  margin-bottom: 10px;
}

/* Testimonios Section */
.testimonios {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.testimonios-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonio-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer nav a {
  color: #FFA500;
  margin: 0 10px;
  text-decoration: none;
}

.footer nav a:hover {
  text-decoration: underline;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

/* Sección Paquetes */
.paquetes {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.paquetes-titulo {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

/* Opciones de Pago */
.opciones-pago {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.opciones-pago button {
  padding: 10px 20px;
  border: 2px solid #1d619e;
  background-color: transparent;
  color: #1d619e;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.opciones-pago .pago-activo {
  background-color: #1d619e;
  color: #ffffff;
}

.opciones-pago button:hover {
  background-color: #1d619e;
  color: #ffffff;
}

.opciones-pago .descuento {
  background-color: #FF5733;
  color: white;
  padding: 2px 6px;
  font-size: 0.8rem;
  border-radius: 12px;
  margin-left: 8px;
}

/* Tarjetas de Paquetes */
.paquetes-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.paquete-card {
  background: #F5F9FF;
  border: 2px solid #E0E7FF;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.paquete-card:hover {
  border-color: #1d619e;
  transform: translateY(-10px);
}

.paquete-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.paquete-card .precio {
  font-size: 1.8rem;
  color: #1d619e;
  font-weight: bold;
  margin: 10px 0;
}

.paquete-card .precio .moneda {
  font-size: 1.2rem;
  vertical-align: top;
}

.paquete-card .precio .decimal {
  font-size: 1rem;
  vertical-align: top;
}

.paquete-card .descripcion {
  font-size: 0.9rem;
  color: #666;
  margin: 15px 0;
}

.btn-contratar {
  display: inline-block;
  background-color: #28A745;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-contratar:hover {
  background-color: #218838;
}

/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #1d619e 0%, #0041A8 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #FFA500; /* Naranja para destacar "iSASuite" */
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Call-to-action buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #FFA500; /* Botón naranja */
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e59400;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #1d619e;
}

/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* Video Section */
.video-section {
  background-color: #003366; /* Fondo azul oscuro */
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.video-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px; /* Espaciado debajo del título */
}

.video-wrapper {
  position: relative;
  background: #ffffff; /* Fondo blanco del contenedor */
  border-radius: 20px; /* Bordes redondeados */
  overflow: hidden;
  display: inline-block;
  width: 90%; /* Ocupará el 90% del ancho del contenedor */
  max-width: 900px; /* Ancho máximo */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra */
}

.video-wrapper iframe {
  width: 100%; /* Ocupa todo el ancho del contenedor */
  height: 500px; /* Altura ajustada para que se vea bien */
  border: none;
  border-radius: 20px; /* Coincide con el contenedor */
}

/* Responsividad */
@media (max-width: 768px) {
  .video-title {
    font-size: 1.6rem;
  }
  .video-wrapper iframe {
    height: 300px; /* Ajusta el video en pantallas pequeñas */
  }
}

/* Centrar el contenedor principal */
.centrado {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

/* Botón principal */
.btn-comparar {
  background-color: #1d619e;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-comparar:hover {
  background-color: #0056b3;
}

/* Tabla contenedora */
.detalles-paquetes {
  margin-top: 20px;
  display: none; /* Oculto por defecto */
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 80%; /* Ajusta el ancho de la tabla */
  max-width: 900px; /* Ancho máximo */
}

/* Tabla */
.detalles-paquetes table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin: 0 auto;
}

.detalles-paquetes th,
.detalles-paquetes td {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 16px;
}

.detalles-paquetes th {
  background-color: #1d619e;
  color: white;
  font-weight: bold;
}

.detalles-paquetes td {
  background-color: #f9f9f9;
}

/* Íconos y estilos */
.detalles-paquetes td:first-child {
  font-weight: bold;
  text-align: left;
}

/* Tabla */
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 20px auto;
}

th,
td {
  padding: 10px;
  border: 1px solid #ddd;
}

th {
  background-color: #1d619e;
  color: white;
}

/* Ícono de información */
.info-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #1d619e;
  color: white;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}

/* Popup de información */
.info-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center;
  width: 300px;
  max-width: 90%;
}

.info-popup p {
  margin-bottom: 20px;
}

#close-info {
  background-color: #1d619e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#close-info:hover {
  background-color: #0056b3;
}

/* Fondo semi-transparente detrás del popup */
.oculto {
  display: none;
}


  .faq-section {
    background-color: #1d619e;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .faq-item {
    margin-bottom: 15px;
  }

  .faq-question {
    background-color: #fff;
    color: #1d619e;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .faq-question:hover {
    background-color: #e6f0ff;
  }

  .faq-answer {
    background-color: #fff;
    color: #000;
    padding: 15px;
    max-width: 800px;
    margin: 10px auto;
    border-radius: 5px;
    display: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .faq-answer p {
    margin: 0;
  }

  .faq-question.active + .faq-answer {
    display: block;
  }
  
  .testimonios {
    padding: 80px 20px; /* Más ancho */
    background-color: #f9f9f9;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* Espacio entre el título y el contenido */
  }

  .testimonios h2 {
    font-size: 2.5rem;
    color: #333;
    max-width: 40%; /* Ocupa una parte del ancho */
  }

  .testimonios-content {
    display: flex;
    align-items: center;
    max-width: 90%; /* Ampliar la sección */
    margin: auto;
    gap: 50px;
  }

  .testimonio-card {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: #555;
    max-width: 50%; /* Ampliar para que sea más ancho */
    opacity: 0;
    animation: fadeAndRise 5s ease-in-out infinite;
  }

  .testimonio-card.active {
    display: block;
    opacity: 1;
  }

  /* Animación de entrada y salida */
  @keyframes fadeAndRise {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    20% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateY(-20px);
    }
  }
  
  
  .destacados {
  text-align: center;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.destacados h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.destacados-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.destacado-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 200px;
}

.destacado-item .icono img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.destacado-item h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #1d619e;
}

.destacado-item p {
  font-size: 1rem;
  color: #666;
}

  
.caracteristicas {
  background: url('fondo_bloque_caracteristicas.png') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
}

.caracteristicas h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feature-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #666;
}

.cta {
  margin-top: 30px;
}

.btn-comenzar {
  background-color: #28a745;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
}

.btn-comenzar:hover {
  background-color: #218838;
}

/* Ajustes para dispositivos pequeños */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
  