

/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  overflow-x: hidden; /* Evita el deslizamiento horizontal en todo el sitio */
}

html {
  width: 100%; /* Asegura que el ancho del contenido se ajuste al viewport */
  overflow-x: hidden; /* Evita que el html permita deslizamiento horizontal */
}

.responsive-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.responsive-img:hover {
  transform: scale(1.05); /* Aumenta el tamaño ligeramente al pasar el ratón */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.red-icon {
  color: red !important; /* Estilo para cruces */
}

/* Header and Navigation */

/* General Header Styles */
.corporate-header {
  position: relative;
  background: linear-gradient(135deg, #0A83C4, #003366), url('images/header.webp') no-repeat center;
  background-size: cover; /* Integra mejor el fondo */
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  overflow: hidden;
}

.corporate-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/header.webp') no-repeat center center; /* Imagen de fondo */
  background-size: cover;
  opacity: 0.2; /* Transparencia para resaltar el texto y el logo */
  z-index: 1;
}

/* Navbar Styles */
.corporate-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 40px; /* Agrega espacio en los bordes laterales */
  box-sizing: border-box;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para mejorar visibilidad */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra para resaltar */
}

.corporate-header nav .logo {
  display: flex;
  align-items: center;
  gap: 10px; /* Espacio entre logo e imagen */
  text-decoration: none;
}
.corporate-header nav .logo span{
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}
.corporate-header nav .logo img {
  max-height: 50px; /* Tamaño del logo */
}

.corporate-header nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px; /* Más espacio entre los elementos del menú */
}

.corporate-header nav .nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Mejora visibilidad sobre fondos claros */
  transition: color 0.3s ease;
}

.corporate-header nav .nav-links li a:hover {
  color: #FFA500; /* Cambio de color al pasar el mouse */
}

/* Header Content */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px; /* Agrega espacio lateral al contenido principal */
  box-sizing: border-box;
}

/* Header Content */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 1000;
}

.text-section {
  flex: 1;
  max-width: 40%; /* Reduce el ancho para mejor balance */
  text-align: left;
}

.text-section h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Mejora la visibilidad */
}

.text-section p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.text-section .cta-btn {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: fadeInUp 2s ease-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra estándar */
}

.text-section .cta-btn:hover {
  background-color: #086b9d;;
  transform: scale(1.1);
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 100px; /* Espacio entre texto e imagen */
}

.image-section img {
  position: absolute; /* Posiciona la imagen dentro del contenedor */
  bottom: 0; /* Alinea la imagen al borde inferior del contenedor */
  height: 80vh; /* Limita la altura de la imagen */
  width: auto; /* Mantén las proporciones */
  object-fit: contain; /* Ajusta la imagen sin deformarla */
  display: block;
}

/* General Media Queries */

@media (max-width: 1850px) {
  .image-section img {
    right: 10%;
  }
}


/* Para pantallas menores a 1024px (Tablets) */
@media (max-width: 1400px) {
  .header-content {
    flex-direction: column; /* Cambia de fila a columna */
    align-items: center; /* Centra los elementos */
    text-align: center; /* Centra el texto */
    padding: 20px;
  }

  .text-section {
    max-width: 90%; /* Ajusta el ancho */
    margin-bottom: 20px; /* Espacio entre texto e imagen */
    text-align: center;
  }

  .text-section h1 {
    font-size: 2.5rem; /* Reduce el tamaño del título */
  }

  .text-section p {
    font-size: 1.2rem; /* Reduce el tamaño del párrafo */
  }
 
  .image-section {
    margin-right: 0; /* Quita el margen lateral */
    justify-content: center; /* Centra la imagen */
  }

  .image-section img {
    display: none
  }
}

/* Para pantallas menores a 768px (Móviles) */
@media (max-width: 768px) {
  .corporate-header nav {
    flex-direction: column; /* Coloca el menú debajo del logo */
    align-items: center;
    padding: 10px 20px;

  }

  .corporate-header nav .logo {
    justify-content: center; /* Centra el logo */
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .corporate-header nav .nav-links {
    display: none; /* Esconde el menú */
  }

  .corporate-header nav .menu-toggle {
    display: block; /* Muestra el ícono del menú hamburguesa */
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }

  .corporate-header nav.active .nav-links {
    display: flex; /* Muestra el menú al hacer clic */
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .header-content {
    padding: 10px;
    padding-top: 100px;
  }

  .text-section h1 {
    font-size: 2rem; /* Reduce aún más el título */
  }

  .text-section p {
    font-size: 1.2rem;
  }

  .image-section img {
    max-width: 80%; /* Reduce aún más la imagen */
  }
}

/* Para pantallas menores a 480px (Móviles pequeños) */
@media (max-width: 480px) {
  .text-section h1 {
    font-size: 1.8rem; /* Ajusta para pantallas pequeñas */
  }

  .text-section p {
    font-size: 1rem;
  }

  .text-section .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .image-section img {
    max-width: 90%; /* Reduce el tamaño de la imagen para pantallas muy pequeñas */
  }
}


/* General Section Styling */
section {
  padding: 60px 40px;
  background: #f9f9f9;
  color: #333;
  box-sizing: border-box;
}

section:nth-child(even) {
  background: #fff;
}
/* Keyframes for animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
  }
}



/* Sections */
.info-section {
  padding: 80px 20px;
}

.info-section:nth-child(even) {
  background: #f5faff;
}

.info-section:nth-child(odd) {
  background: #fff;
}

.info-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #0A83C4;
}

.info-section p {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}

.info-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: center;
}

/* Images */
.responsive-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Centrar el botón dentro de su contenedor */
.info-section .cta-btn {
  display: inline-block; /* Mantiene el tamaño predeterminado */
  margin: 40px auto; /* Centra horizontalmente y añade margen superior/inferior */
  background-color: #0A83C4; /* Azul principal */
  color: #fff;
  padding: 15px 30px;
  font-size: 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-align: center; /* Centra el texto dentro del botón */
  transition: all 0.3s ease;
}

.info-section .cta-btn:hover {
  background-color: #086b9d; /* Azul más oscuro en hover */
  transform: scale(1.05); /* Efecto de zoom */
}

/* Contenedor de la sección para asegurar que el botón se centre */
.info-section .container {
  display: flex; /* Convierte el contenedor en un flexbox */
  flex-direction: column; /* Asegura que los elementos se apilen verticalmente */
  align-items: center; /* Centra horizontalmente todos los elementos */
  gap: 20px; /* Añade espacio entre elementos */
}

@media (max-width: 768px) {
  .info-section .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .info-section h2 {
    margin-top: 0;
  }
  .info-section .cta-btn {
    margin-bottom: 0; 
  }
}
/* General Grid for About and Benefits Sections */
#about .grid, #benefits .grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Divide en dos columnas iguales */
  gap: 40px; /* Espacio entre texto e imagen */
  align-items: start; /* Asegura que los elementos estén alineados al inicio */
}

#about p, #benefits p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify; /* Justifica el texto */
}

#about ul, #benefits ul {
  padding-left: 20px; /* Agrega sangría a las listas */
  list-style: disc; /* Usa estilo de lista con puntos */
}

#about ul li, #benefits ul li {
  margin-bottom: 10px;
  text-align: justify; /* Justificación de las listas */
}

#about img, #benefits img {
  width: 100%;
  border-radius: 10px; /* Bordes redondeados para un diseño moderno */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  #about .grid, #benefits .grid {
    grid-template-columns: 1fr; /* Cambia a una sola columna */
    gap: 20px; /* Reduce el espacio entre texto e imagen */
  }
}



/* Services Section */
#services .grid {
  display: flex;
  justify-content: center; /* Centra las tarjetas en la fila */
  gap: 20px;
  flex-wrap: wrap; /* Permite que las tarjetas se ajusten a varias filas */
  align-items: stretch; /* Todas las tarjetas tienen la misma altura */
}

.card {
  flex: 1;
  min-width: 300px; /* Ancho mínimo para asegurar diseño responsivo */
  max-width: 33%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column; /* Distribuye contenido verticalmente */
  justify-content: space-between;
}
.card:hover {
  transform: scale(1.05); /* Aumenta el tamaño ligeramente al pasar el ratón */
}
.card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.5rem;
  color: #0A83C4;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  background-color: #0A83C4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card a:hover {
  background-color: #056092;
}


/* Pricing Section */


/* General Pricing Styles */
.pricing-horizontal {
  display: flex;
  justify-content: space-between; /* Alineación en pantallas grandes */
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch; /* Asegura la misma altura en todas las tarjetas */
}

.pricing-card {
  flex: 1;
  max-width: 33%; /* Para pantallas grandes */
  background: linear-gradient(135deg, #fff, #f5f5f5);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column; /* Distribuye elementos verticalmente */
  justify-content: space-between;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .pricing-horizontal {
    flex-direction: column; /* Cambia a diseño vertical */
    align-items: center; /* Centra las tarjetas */
  }

  .pricing-card {
    max-width: 90%; /* Asegura que las tarjetas no ocupen todo el ancho */
    margin-bottom: 20px; /* Agrega espacio entre tarjetas */
  }
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: #0A83C4;
}

.pricing-card .price {
  font-size: 2rem;
  color: #056092;
  margin: 10px 0;
}

.pricing-card .subscription {
  font-size: 1.1rem;
  color: #0A83C4;
  margin-bottom: 20px;
}

.pricing-card h4 {
  margin: 20px 0 10px;
  font-size: 1.3rem;
  color: #0A83C4;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left; /* Alinea la lista a la izquierda */
}

.pricing-card ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.pricing-card ul li i {
  margin-right: 8px;
  color: #0A83C4; /* Color del ícono */
}

.pricing-card p {
  font-size: 1rem;
}

.pricing-card a {
  display: inline-block;
  margin-top: 10px;
  background-color: #0A83C4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.pricing-card a:hover {
  background-color: #056092;
}


/* FAQs */
.faq-item {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.4rem;
  color: #056092;
  margin-bottom: 10px;
}


/* Contact Section */
#contact {
  background: linear-gradient(135deg, #056092, #0A83C4);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
}

form {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 600px; /* Ancho máximo consistente */
  margin: 0 auto; /* Centra la tarjeta del formulario */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block;
  flex-direction: column; /* Asegura que los elementos estén apilados */
}
@media (max-width: 768px) {
  form {
    width: 70vw;
  }
}

form input, form textarea, form button {
  width: 100%; /* Ajusta el ancho para evitar que sobresalgan */
  box-sizing: border-box; /* Incluye el padding dentro del ancho */
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

form textarea {
  resize: none; /* Elimina el cambio de tamaño manual */
}

form button {
  background-color: #0A83C4;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #056092;
}


/* Footer */
.footer {
  background-color: #0A0A0A;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-logo {
  max-height: 100px;
  margin-bottom: 10px;
}

.footer-socials {
  margin-left: 40px
}

.footer-socials a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #0A83C4;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #0A83C4;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
}

.header {
  background: #0A83C4;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.terms-container {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.terms-container section {
  margin-bottom: 40px;
}

.terms-container h2 {
  color: #0A83C4;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.terms-container p, .terms-container ul {
  font-size: 1rem;
  margin: 10px 0;
}

.terms-container ul {
  list-style: disc;
  padding-left: 20px;
}

.back-home {
  text-align: center;
  margin: 30px 0;
}

.back-home .cta-btn {
  display: inline-block;
  background: #0A83C4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-home .cta-btn:hover {
  background: #005e8a;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

