@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* body {
  margin: 0;
  height: 100vh;
  background-color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-align: center;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

.texto {
  font-size: 40px;
  line-height: 1.5;
  margin-top: 50px;
  padding: 10px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto
}
@media (max-width:767px){
 .texto {
  font-size: 30px;
} 
} */
body {
  margin: 0;
  height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

.texto {
  font-size: 40px;
  line-height: 1.5;
  margin-top: 50px;
  padding: 10px;
  margin-bottom: 50px;
  text-align: center;
}
.textoform {
  font-size: 22px;
  line-height: 1.5;
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #00000050;
  
}

.cont_productos {
    margin: 0 auto
}
.bg2 {
    background: #ddd;
    border-radius: 20px;
    margin: 10px;
}
.tit_form_rrhh {
    font-size: 24px;
    color: #000000;
    text-align: left;
    border-bottom: 1px solid black;
    font-weight: bold;
    margin-top: 40px;
}
.contact {
    margin: 50px auto;
    max-width: 800px
}
.control-label {
    margin: 0;
    padding: 0;
    font-size: 20px;
    text-align: left;
    margin-top: 20px;
}
.boton {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #1f7dc1;
  color: #fff;
  text-decoration: none;
  /* quita el subrayado */
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 22px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.boton:hover {
  background-color: #232b58;
}

.pie {
  font-size: 20px;
  margin-top: 50px;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #CCCCCC80;
  color: black;
}
.pie a {
color: black;
text-decoration: underline;
}

@media (max-width:767px) {
 .texto {
  font-size: 30px;
} 
}

.logo-composite {
  position: relative;
  display: inline-block; /* Se ajusta al tamaño del logo */
}

.logo-composite img {
  display: block;
  height: auto;
}

/* Base para los enlaces invisibles */
.link-urban, .link-celpa {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  /* background: rgba(255,0,0,0.2); */ /* Descomenta esto para ver las áreas mientras pruebas */
}

/* Área superior (70% del alto aprox) */
.link-urban {
  top: 0;
  height: 70%;
}

/* Área inferior (30% del alto aprox) */
.link-celpa {
  bottom: 0;
  height: 30%;
}

/* Contenedor principal */
.container-logos {
  display: flex;
  flex-direction: column; /* Apilados verticalmente por defecto (móvil) */
  gap: 20px;              /* Espacio entre los logos */
  align-items: center;    /* Centra los logos horizontalmente */
  width: 100%;
}

/* Ajuste para pantallas grandes (Escritorio) */
@media (min-width: 768px) {
  .container-logos {
    flex-direction: row;     /* Se ponen uno al lado del otro */
    justify-content: center; /* Los centra horizontalmente en conjunto */
    align-items: center;     /* Los alinea verticalmente entre sí */
  }
}