
body {
  margin: 0;
  font-family: 'Gotham Book', sans-serif;
}

.contenedor-central {
  max-width: 1200px; /* o 1140px según tu diseño */
  margin: 0 auto;
  padding: 0 20px; /* evita que toque los bordes */
  width: 100%;
  box-sizing: border-box;
}

/* === SECCIÓN: Topbar, Header, Navbar === */
.topbar {
  background: #0056b3;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.topbar a {
  color: white;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 20px;
}

.header .contenedor-central {
  display: flex;
  align-items: center;
  justify-content: center; /* Centramos el contenido */
  gap: 40px;
}

.header .logo img {
  height: 70px;
}

.navbar {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.navbar a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0056b3;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar a:hover {
  color: #0056b3;
}

.navbar a:hover::after {
  width: 100%;
}

.cta {
  background: #0056b3;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
}

.navbar .dropdown {
  position: relative;
  display: inline-block;
}

.navbar .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  pointer-events: auto;
}

.navbar .submenu li {
  list-style: none;
  border-bottom: 1px solid #eee;
}

.navbar .submenu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.navbar .submenu li a:hover {
  background-color: #f2f2f2;
}

.dropdown.open .submenu {
  display: block;
}

/* === Toggle de menú oculto por defecto (en desktop) === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #0056b3;
  cursor: pointer;
}

/* === Responsive Navbar === */
@media (max-width: 768px) {
  .header .contenedor-central {
    justify-content: space-between;
  }

  .navbar {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  .navbar.active {
    display: flex;
  }

  .cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


/* SECCIÓN: Hero - Video */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero video {
  position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  flex-basis: auto;
  max-width: none;
  padding: 0;
  color: white;
  z-index: 1;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #61a1f2;
  text-transform: uppercase;
  border-left: 4px solid #61a1f2;
  padding-left: 10px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.btn {
  background-color: #0056b3;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
}

/* === Responsive Hero === */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
    flex-direction: column;
    justify-content: center;
  }

  .hero video {
    height: 100%;
  }

  .hero-content {
    max-width: 100%;
    flex-basis: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 8px;
    padding-left: 0;
    border-left: none;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* SECCIÓN: Operacio y Soluciones */
.mensaje-clave {
  background: url("/assets/img/degradado3.png") no-repeat center center;
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  padding: 60px 20px;
}

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

.mensaje-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  align-items: center;
  min-height: 130px
}

.mensaje-item img {
  width: 60px;
  height: 60px;
}

.mensaje-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.mensaje-item p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* === Responsive Operacio y Soluciones === */
@media (max-width: 768px) {
  .mensaje-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .mensaje-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .mensaje-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .mensaje-item h3 {
    font-size: 18px;
  }

  .mensaje-item p {
    font-size: 15px;
  }
}

/* SECCIÓN: Nestros Servicios */
.servicios {
  background-color: #f5f5f5;
  background-color: #f5f5f5;
  padding: 60px 0;
  font-family: 'Gotham Book', sans-serif;
}

.servicios-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.servicios-texto {
  flex: 1;
  max-width: 400px;
}

.servicios-texto .etiqueta {
  color: #0056b3;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

.servicios-texto h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111;
}

.servicios-texto .btn {
  background-color: #0066ee;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.servicios-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-left: 0px;
}

.servicio {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.servicio:hover {
  transform: translateY(-5px);
}

.servicio img {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.servicio h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* === Responsive Nestros Servicios === */
@media (max-width: 1024px) {
  .servicios {
    height: auto;
    padding: 40px 20px;
  }

  .servicios-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .servicios-texto {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .servicios-grid {
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

  .servicio {
    padding: 20px 16px;
  }

  .servicio img {
    width: 60px;
  }

  .servicio h3 {
    font-size: 15px;
  }

  .servicios-texto h2 {
    font-size: 22px;
  }
}

/* SECCIÓN: Acerca de nuestra empresa */
.acerca {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d1cccb;
  min-height: 600px; /* Aumenta altura si lo deseas */
  padding: 40px;
  overflow: hidden; /* IMPORTANTE para evitar que el aro se desborde */
  z-index: 0; /* Asegura que no se superponga a lo que sigue */
}

.acerca::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(243,244,246,1) 0%, rgba(243,244,246,0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.acerca-contenido {
  display: flex;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 2; /* Más arriba que el aro */
  gap: 60px;
}

.acerca-visual {
  flex: 1;
  position: relative;
  z-index: 2;
}

.acerca-visual .aro {
  position: absolute;
  width: 900px;
  height: auto;
  bottom: -60px;  /* Ajuste fino para no salir del recorte */
  left: -420px;
  z-index: 1; /* Debajo del contenido */
  animation: giro 20s linear infinite;
}

.acerca-visual .imagen {
  position: relative;
  width: 300px;
  height: 210px;
  margin: 0 auto;
  border: 10px solid white;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index:3;
}

.acerca-visual .imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acerca-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acerca-texto h5 {
  color: #0066cc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.acerca-texto h2 {
  font-size: 40px;
  margin: 0 0 20px;
  color: #111;
  font-weight: 800;
}

.acerca-texto p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.acerca-lista {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 12px 32px;
}

.acerca-lista li {
  list-style: none;
  font-size: 16px;
  color: #111;
  position: relative;
  padding-left: 28px;
}

.acerca-lista li::before {
  content: "✔";
  color: #0066cc;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

@keyframes giro {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === Responsive Acerca de nuestra empresa === */
@media (min-width: 1400px) {
  .acerca-visual .aro {
    width: 700px;
    left: -300px;
    bottom: 180px;
  }
}

@media (max-width: 1024px) {
  .acerca {
    height: auto;
    padding: 40px 20px;
  }

  .acerca-contenido {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .acerca-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .acerca-visual .aro {
    width: 550px;
    left: -250px;
    bottom: 160px;
  }

  .acerca-visual .imagen {
    width: 250px;
    height: 180px;
    border-width: 8px;
  }

  .acerca-texto {
    width: 100%;
    text-align: center;
  }

  .acerca-texto h2 {
    font-size: 28px;
  }

  .acerca-lista {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  .acerca-lista li {
    padding-left: 24px;
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .acerca-visual .imagen {
    width: 220px;
    height: 160px;
  }

  .acerca-visual .aro {
    display: none;
  }

  .acerca-texto h2 {
    font-size: 24px;
  }

  .acerca-texto p {
    font-size: 14px;
  }

    .acerca-lista {
    justify-items: start;   /* Alinea los elementos a la izquierda */
    text-align: left;
  }

  .acerca-lista li {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    font-size: 14px;
  }
}


/* SECCIÓN: Proyectos */
.proyectos {
  padding: 80px 40px;
  background-color: #f3f4f6;
  text-align: center;
}

.proyectos-header h5 {
  color: #0566c3;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.proyectos-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.proyectos-header p {
  color: #555;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.proyectos-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
}

.proyecto-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proyecto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.proyecto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.proyecto-card:hover img {
  transform: scale(1.03);
}

.proyecto-info {
  padding: 20px;
  flex: 1;
  text-align: left;
}

.proyecto-info h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.proyecto-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.btn-proyecto {
  display: inline-block;
  padding: 10px 16px;
  background-color: #0566c3;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.proyecto-card:hover .btn-proyecto {
  background-color: #044c93;
  transform: scale(1.05);
}

/* === Responsive Proyectos === */
@media (max-width: 600px) {
  .proyectos {
    padding: 40px 20px;
  }

  .proyectos-header h2 {
    font-size: 24px;
  }

  .proyectos-header p {
    font-size: 14px;
  }

  .btn-proyecto {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
}

/* SECCIÓN: Testimonios */
.testimonios {
  position: relative;
  background-color: #1c1f24;
  min-height: 500px;
  height: auto;
  padding: 50px 40px;
  color: white;
  overflow: hidden;
}

.testimonios-overlay {
  background: url("/assets/img/degradado3.png") no-repeat center center;
  background-size: contain; /* Muestra el patrón completo */
  background-repeat: repeat; /* Se repite si hace falta */
  background-position: center;
  opacity: 0.2; /* Más visible que 0.05 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  animation: backgroundShift 60s linear infinite;
}

@keyframes backgroundShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

.testimonios-contenedor {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.testimonio-texto {
  flex: 1;
}

.testimonio-texto h5 {
  color: #1f8fff;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonio-texto h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.testimonio-cita {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.comillas {
  font-size: 28px;
  margin-bottom: 8px;
  margin-top: 0;
  color: #fbbc05;
  display: inline-block;
}

.testimonio-autor strong {
  color: #1f8fff;
  font-size: 16px;
}

.testimonio-estrellas {
  color: #fbbc05;
  font-size: 20px;
  margin: 10px 0;
}

.testimonio-controles {
  margin-top: 20px;
}

.testimonio-controles .dot {
  height: 10px;
  width: 10px;
  margin-right: 8px;
  background-color: #888;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}

.testimonio-controles .dot.active {
  background-color: #1f8fff;
}

.testimonio-imagenes {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonio-avatar-principal {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid white;
}

.testimonio-avatar-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonio-avatar-thumbs {
  position: absolute;
  display: flex;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  flex-wrap: wrap;
  justify-content: center;
  bottom: -10px;
}

.testimonio-avatar-thumbs img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: 0.3s;
}

.testimonio-avatar-thumbs img:hover {
  border-color: #1f8fff;
}

.testimonio {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.testimonio.activo {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

#testimonio-texto, #testimonio-nombre, #testimonio-cargo, #testimonio-avatar {
  transition: opacity 0.5s ease;
}

/* === Responsive Testimonios === */
@media (max-width: 1024px) {
  .testimonio-avatar-thumbs {
    bottom: -40px;
    gap: 6px;
  }
}

@media (max-width: 900px) {
  .testimonios-contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonio-texto {
    order: 2;
    padding-top: 30px;
  }

  .testimonio-imagenes {
    order: 1;
    margin-bottom: 30px;
  }

  .testimonio-avatar-principal {
    width: 200px;
    height: 200px;
  }

  .testimonio-avatar-thumbs {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .testimonio-texto h2 {
    font-size: 24px;
  }

  .testimonio-cita {
    font-size: 16px;
  }

  .testimonio-avatar-thumbs img {
    width: 50px;
    height: 50px;
  }
}

/* SECCION: Socios Tecnologicos */
.socios {
  background-color: #f7f9fc;
  padding: 60px 40px;
}

.socios-layout {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.socios-texto {
  text-align: left;
}

.socios-texto .subtitulo {
  color: #1f8fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.socios-texto h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #111;
}

.socios-texto p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 6px 0;
}

.socios-texto .bold {
  font-weight: bold;
  color: #111;
}

.instruccion {
  margin-top: 24px;
  color: #666;
  font-size: 15px;
}

.socios-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  justify-items: center;
  align-items: center;
}

.socios-logos img {
  max-height: 130px;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.socios-logos img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* === Responsive Socios Tecnologicos === */
@media (max-width: 1024px) {
  .socios-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socios-texto {
    text-align: center;
  }

  .socios-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .socios-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .socios-texto h2 {
    font-size: 28px;
  }

  .socios-texto p,
  .instruccion {
    font-size: 14px;
  }
}

/* === SECCIÓN DE CONTACTO - ESTILOS === */

.contacto-seccion {
  background-color: #f7f9fc; /* Color base */
  background: url("/assets/img/degradado3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.contacto-seccion::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.7); /* blanco con transparencia */
  z-index: -1;
}

.contacto-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  align-items: start;
  border:none;
  box-shadow: none;
}

.contacto-formulario h3,
.contacto-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1f8fff;
}

.contacto-formulario input,
.contacto-formulario textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contacto-formulario button {
  background-color: #1f8fff;
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.contacto-formulario button:hover {
  background-color: #176ddf;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px; /* Espacio entre ícono y texto */
}

.info-item .icon {
  font-size: 24px;
  flex-shrink: 0; /* Evita que el icono se reduzca */
}

.info-item h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.info-item p {
  margin: 2px 0 0;
  font-size: 14px;
}
.contacto-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacto-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #333;
}

.contacto-info li i {
  font-size: 20px;
  color: #1f8fff;
  min-width: 24px;
}

textarea {
  resize: none;
}

/* === Responsive Socios Tecnologicos === */

@media (max-width: 1024px) {
  .contacto-contenedor {
    grid-template-columns: 1fr 1fr;
  }

  .contacto-mapa {
    grid-column: span 2;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contacto-contenedor {
    grid-template-columns: 1fr;
  }

  .contacto-mapa {
    height: 250px;
  }

  .contacto-formulario,
  .contacto-info {
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  .contacto-formulario input,
  .contacto-formulario textarea {
    font-size: 14px;
  }

  .contacto-formulario button {
    width: 100%;
  }

  .contacto-info h2 {
    font-size: 20px;
  }
}


/* FOOTER ESTILOS GENERALES */
footer {
  background-color: #1c1f24;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.footer-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-columna {
  flex: 1 1 250px;
  text-align: left;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 10px;
}

.footer-sociales {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-sociales a {
  color: white;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-sociales a:hover {
  color: #1f8fff;
}

.footer-enlaces a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-enlaces a:hover {
  color: #1f8fff;
}

/* FOOTER RESPONSIVO */
@media (max-width: 768px) {
  .footer-contenido {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-columna {
    text-align: center;
  }

  .footer-sociales {
    justify-content: center;
  }
}
