/* Reset y ajuste general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Segoe UI', sans-serif;
  background-color: #140e04;
  color: #fff;
  line-height: 1.6;
  padding-top: 70px; /* ajusta según la altura de tu nav */
  
}

/* Contenedor del header */
.nav-container {
  display: flex;
  justify-content: center; /* Lo cambiamos para que nav se centre horizontalmente */
  padding: 10px 40px;
  background-color: rgba(136, 136, 136, 0.329);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 90px; /* altura mínima para que entre el logo grande */
  backdrop-filter: blur(5px);
  z-index: 4000;
}

/* Nav para alinear logo y menú a los extremos */
nav#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo a un lado, menú al otro */
  width: 100%;
  max-width: 1200px; /* ancho máximo opcional */
  min-height: 70px; /* Ajusta altura para que quepa el logo */
}

/* Logo más pequeño y con espacio a la derecha */
.logo img {
  width: 125px;
  height: auto;
  margin-right: 55px; /* espacio entre logo y menú */
}

/* Menú principal */
.menu {
  display: flex;
  gap: 15px; /* espacio entre opciones */
  position: static;     /* ✅ en PC el menú es normal */
  transform: none;
  height: auto;
  width: auto;
  background: transparent;
   list-style: none; /* elimina las viñetas */
}

.menu li {
  position: relative;
  padding-bottom: 20px;

}

/* Solo el ícono de la casa tendrá este color */
.icon-home {
  color: #00C853;   /* cámbialo al que quieras */
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 30px;
  display: block;
  position: relative;
  overflow: hidden;
   transition: transform 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  transform: scale(1.1);
  color: #00C853;
}

/* Mostrar submenú al pasar el ratón */
.menu > li:hover .submenu {
  display: block;
}

/* Efecto de hover en el menú */
.menu a {
  position: relative;
  overflow: hidden;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 5px;   /* distancia exacta bajo el texto */
  left: 50%;
  width: 0;
  height: 2px;
  background: #00C853;
  transition: width 0.3s ease, left 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
  left: 0;
}

/* Submenú */
.submenu {
  display: none;
  position: absolute;
  flex-direction: column;
  padding: 10px;
  border-radius: 6px;
  top: 90px;
  left: 0;
  background: rgb(0, 0, 0); /* Fondo del submenú */
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 250px; /* O el que necesites */
  white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
  list-style: none; /* elimina las viñetas */ 
  z-index: 4100;
  
}

/* Cuando el padre tenga la clase .open, mostramos el submenu */
li.open > .submenu {
  display: flex;
}

.submenu li a {
  color: #ffffff;
  padding: 10px 25px;
  display: block;
  text-decoration: none;
}

.submenu li a:hover {
  background-color:#1F2A40;
  border-radius: 5px;
}

/* Estilo de botones */
.cta-button, .btn-main, .primary-button {
  background-color: rgb( 0, 32, 36);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.cta-button:hover, .btn-main:hover, .primary-button:hover {
  background-color: #bfff0054;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;  /* Asegura que esté debajo del menú y logo */
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 110%;
  min-height: 110%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Texto encima del video */
.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  text-align: center;
  pointer-events: none; /* Para que el hover no afecte el video */
}

.text-slider {
  position: relative;
  width: 100%;
  height: auto; /* Deja que cada slide maneje su propio alto */
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centra cada slide */
  opacity: 0;
  transition: opacity 1s ease;
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
  pointer-events: auto; /* Para que botones sean clicables */
}

.slide.active {
  opacity: 1;
  z-index: 2;
}


.slide h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.slide p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #eee;
}

.slide .btn-main {
  margin-top: 10px;
}

/*Animacciones de slider*/


.slide h1, .slide p {
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.slide button {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  color: white;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

 .botones-flotantes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}


  /*========Cursos=======*/

.courses h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.courses h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 10px auto 0;
  border-radius: 2px;
}


.courses {
  padding: 60px 40px;
  background-color: #008cff;
  text-align: center;
}


.course-card {  
  background-color: #1f1f3a;
  color: white;
}

.course-card p {
  color: #ccc;
}

.section-description {/*Pregunta*/
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 40px;
}

.course-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.course-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 25px;
  text-align: left;
}

.course-card h3 {
  color: #00C853;
  margin-bottom: 10px;
}


.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.description {
  display: none;
  margin-top: 10px;
   margin-bottom: 15px;/*Espacio entre la descripccion y Botones*/
  font-size: 0.95rem;
  color: #ddd;
  background-color: #1e1e1e;
  padding: 10px;
  border-radius: 6px;
}

.course-card p {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  justify-content: space-between;
}

.btn-temario, .btn-pagar {
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn-temario {
  background-color: #2E2E2E;
  color: #ffffff;
}

.btn-pagar {
  background-color: #00C853;
  color: #fff;
}

.curso-card {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.curso-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 280px;
  transition: transform 0.3s ease;
}

.curso-item:hover {
  transform: translateY(-5px);
}

.curso-item h3 {
  color: #00C853;
  margin-bottom: 10px;
}

.curso-item img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.curso-item img:hover {
  transform: scale(1.05);
}

.curso-descripcion {
  margin: 12px 0;
  font-size: 14px;
  color: #555;
}

/* Botón atractivo */
.btn-curso {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #6a11cb, #00C853);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-curso:hover {
  background: linear-gradient(135deg, #00C853, #6a11cb);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}



/*========== Conocenos ===========*/

.conocenos {
  color: #000;
}

.info-section {
  display: flex;
  flex-wrap: nowrap;
  padding: 60px 40px;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  background-color: #2a2a44;
  flex-direction: row; /* Asegura que los hijos estén en fila */
   z-index: 0 !important;
}

.image-container {
  flex: 2;/*Ocupa mas espacio entre el texto*/
  min-width: 400px; /* Aumenta el tamaño mínimo */
  max-width: 800px; /* Controla el tamaño máximo */
  display: flex;
  justify-content: center;
   margin-bottom: 20px; /* Espacio entre la imagen y el contenido */
    z-index: 0 !important;

}

.image-container img {
  max-width: 100%;/* Ocupa todo el contenedor */
  height: auto;
  border-radius: 20px;
   object-fit: cover; /* Asegura que la imagen se ajuste bien */
    z-index: 0 !important;

}

.conocenos-slider-container {
   width: 600px; /* o max-width: 100% si quieres que sea responsive */
  height: 315px; /* asegura que tenga altura visible */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  flex-shrink: 0; /* evita que se reduzca demasiado */
}

.conocenos-slide {
  position: absolute; /* apila los slides dentro del contenedor */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease; /* animación suave */
}

.conocenos-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.conocenos-slide iframe {
  width: 100%;   /* ocupa todo el contenedor */
  height: 100%;  /* ocupa todo el contenedor */
  border: none;
  display: block;
  border-radius: 20px; /* bordes redondeados */
}

.content {
  flex: 1;
  max-width: 400px;
  min-width: 300px;
  color: #ffffff;
   display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

}

h2 {

  font-size: 2.8rem;
  margin-bottom: 20px;

}

.accordion-button {
  width: 100%;
  padding: 15px;
  background-color: #1f1f3a;
  color: white;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid #333;
  font-size: 18px; /* Mejorar la legibilidad */

}

.accordion-button::after {
  content: '+';
  float: right;
  transition: transform 0.3s;
}

.accordion-button.active::after {
  content: '-';
}


.vision-image-container {
  margin-top: 20px;
  text-align: center;
  display: none;
}

.vision-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}


.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #2a2a44;
  color: #ccc;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.accordion-content p {
  margin: 15px 0;
}

.accordion-button.active + .accordion-content {
  max-height: 100px; /* Ajusta según el contenido */
  padding: 10px 15px;
}

/*Estilo de la imagen y el slider */

/* Ajustes de imagen y slider */
.conocenos-slider-container {
  max-width: 600px;
  height: 262px;
  z-index: 0 !important;
  position: relative;
}

/* Ajustes de contenedor de la sección de contenido */
.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/*========= Servicios ============*/

.services-section {
  background-color: #0099ff9f;
  text-align: center;
  padding: 60px 20px;
}


.services-section h2 {
  font-size: 2.8rem;
  color: #ffffff;
   position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}


.services-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 10px auto 0;
  border-radius: 2px;
}


.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 280px; /* ancho de cada tarjeta */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  list-style: none;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 140px;       /* altura fija */
  object-fit: cover;   /* recorta la imagen sin deformarla */
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 18px;
  color: #00C853;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-box p {
  font-size: 14px;
  color: #666;
}

.service-box:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-box:hover .icon,
.service-box:hover h3 {
  transform: scale(1.2);
}



/*======= Portafolio ===========*/

.portfolio {
  padding-top: 20px;
  background-color: #008cff;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 10px auto 0;
  border-radius: 2px;
}


.filters {
  margin: 30px 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #00C853;
  color: #FFFFFF;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #16213E;
}



.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0; /* quita el hueco */
  padding-bottom: 20px; /* si quieres un respiro visual */
}



.portfolio-item {
  width: 100%;
  max-width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta la imagen pero mantiene la proporción */
  border-radius: 12px;
}


.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hover-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* fondo semitransparente */
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.image-wrapper:hover .hover-title {
  opacity: 1;
}

/*Animaciones de portafolio*/

.portfolio-item.e-learning img {
  transition: transform 0.4s ease;
}

.portfolio-item.e-learning:hover img {
  transform: rotate(2deg) scale(1.03);
}


.portfolio-item.sitios-web img {
  transition: transform 0.3s ease;
}

.portfolio-item.sitios-web:hover img {
  animation: pulse 0.4s ease;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}


.portfolio-item.soporte-tecnico img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.portfolio-item.soporte-tecnico:hover img {
 filter: blur(2px);

}

.portfolio-item.aplicaciones-moviles img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.portfolio-item.aplicaciones-moviles:hover img {
 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
transform: scale(1.04);
}

.portfolio-item.redes-sociales img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item.redes-sociales:hover img {
 transform: scale(1.03);
filter: brightness(1.2);

}

.portfolio-item.ecommerce img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item.ecommerce:hover img {
 transform: translateY(-5px);

}

.portfolio-item.sistemas img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item.sistemas:hover img {
 transform: rotate(-2deg) scale(1.05);

}








/*========== Descargas =======*/


.software {
  padding-top: 20px;
  background-color: #1A1A2E;
  text-align: center;
}

.software h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.software h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 10px auto 0;
  border-radius: 2px;
}

.software-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px;
  flex-wrap: wrap;
}

.software-card {
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  width: 260px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;

  border: 2px solid transparent;
  transition: all 0.3s ease;

}

.software-card.active {
  border-color: #f1752b;
}


.icon-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.icon {
  width: 32px;
  height: 32px;
}

.number {
  font-size: 28px;
  font-weight: bold;
  color: #1F2A40;
}


.software-card h3 {
  color: #00C853;
  font-size: 18px;
  text-align: center;
  margin-bottom: 12px;
  display: none;
}


.software-card:hover h3 {
  display: block;
}

.software-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;

}

.software-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease; /* para animar */

}

.software-card:hover .software-image img {
  transform: scale(1.05); /* ligero zoom */
}


.overlay {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 10px;
  background-color: rgba(32, 100, 255, 0.9);
  color: white;
  font-size: 18px;
  border-bottom-left-radius: 8px;
  display: none;
}

.software-card:hover .overlay {
  display: block;
}

/*Animacion de descarga*/
.icon-number.giro img {
  transition: transform 0.3s ease;
}

.icon-number.giro:hover img {
  transform: rotate(-8deg) scale(1.05);

}



/*Team*/

.team-section {
  background-color: #008cff;
  text-align: center;

  }

.team-section {
  text-align: center;
  padding: 60px 20px;
}

.team-section h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.team-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 10px auto 0;
  border-radius: 2px;
}

.team-section p {
  color: #ffffff;
  margin-bottom: 40px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-member h3 {
  margin: 10px 0 5px;
  color: #0055ff;
}

.team-member .role {
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons i {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #0055ff;
}

/*Animacciones de Team*/
.team-animaccion img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.team-animaccion:hover img {
  transform: scale(1.25);
filter: brightness(1.2);

}


#btnTop {

  display: none;
  position: fixed;
  bottom: 30px;   /* distancia desde abajo */
  left: 50%;      /* posición desde la izquierda */
  transform: translateX(-50%); /* centra horizontalmente */
  z-index: 999;
  font-size: 15px;
  border: none;
  background-color: #00C853;
  color: #ffffff;
  padding: 15px 18px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

#btnTop:hover {
  background-color: #0099ff9f;
  transform: translateX(-50%) scale(1.1); /* mantiene centrado y añade animación */
}





/*Footer*/

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Footer general */
.footer {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75); /* transparencia para ver el video */
  padding: 60px 40px 30px;
  position: relative;
}

.footer-section {
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-title {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 5px;
  text-align: center;
}

.footer-bar {
   content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 10px auto 0;
  border-radius: 2px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;

}

.footer-column p,
.footer-column ul,
.footer-column li,
.footer-column a {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
  text-decoration: none;
  margin-top: 10px;
}

.footer-column a:hover {
  color: #BFFF00;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin: 15px 0;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  flex: 1;
  outline: none;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #00aaff;
  border: none;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #0088cc;
}

/* Redes sociales */
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #00aaff;
  transform: scale(1.2);
}

/* Parte inferior */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom a {
  color: #00aaff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Video de fondo */
.footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;  /* Asegura que el video esté detrás del contenido */
  filter: brightness(0.6); /* Ajusta el brillo para que el texto sea más legible */
}

/*iconos*/
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.footer-column a i {
  margin-right: 8px;
  color: #ffcc00; /* Puedes cambiar el color del icono */
}

