/* FUENTE GENERAL */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

/* FONDO CON IMAGEN */
body {
    background: url('fondo-limpieza.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

/* CABECERA CON LOGOS */
header {
    background-color: rgba(255, 255, 255, 1);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}
.logo-actua {
    height: 45px;
    object-fit: contain;
}

.logo-olivares {
    height: 80px;
    object-fit: contain;
}

.logo-hozono {
    height: 60px;
    object-fit: contain;
}


/* Todos los logos con mismo ancho, autoaltura */
.logo-uniforme {
    width: 140px; /* o 120px si quieres que ocupen menos */
    height: auto;
    object-fit: contain;
}

/* CONTENIDO PRINCIPAL */
.contenido {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* BOTÓN */
.boton {
    display: inline-block;
    padding: 15px 50px;
    background-color: #1bb14f;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 10px;
    transition: background 0.3s;
}

.boton:hover {
    background-color: #138e3d;
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 10px;
    right: 10px;

    background-color: rgba(0, 0, 0, 0.6);
    color: white;

    padding: 6px 14px;
    font-size: 12px;
    border-radius: 6px;

    display: flex;               /* Activamos modelo flex */
    align-items: center;         /* Centra verticalmente el texto */
    justify-content: flex-start; /* Alinea a la izquierda horizontalmente */

    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    height: 40px;                /* Altura fija para forzar centrado vertical */
}

body {
    background-image: url('fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top; /* <-- aquí el cambio clave */
    background-attachment: fixed;
    color: white;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .logo-actua,
  .logo-olivares,
  .logo-hozono {
    width: 30%;
    height: auto !important;
    max-height: 50px;
    object-fit: contain;
  }
}




