/* Estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-image: url('https://objectstorage.mx-queretaro-1.oraclecloud.com/n/axoaifaftwqr/b/logomails/o/bg-page-construction.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.construction {
    text-align: center;
    margin: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 80%;
}

.construction h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.construction p {
    font-size: 1.2rem;
}

footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    text-align: center;
}

/* Contenedor de iconos de las dos empresas alineados horizontalmente */
.footer-icons-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permitir que los elementos se ajusten en pantallas pequeñas */
}

/* Estilos para los iconos de cada empresa */
.social-icons {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    justify-content: center;
}

.empresa-1, .empresa-2 {
    display: flex;
}

/* Separador entre los dos grupos en pantallas pequeñas */
.separator {
    width: 100px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Iconos SVG */
.svg-icon {
    width: 28px;
    height: 36px;
    color: rgb(153, 151, 151);
    transition: transform 0.3s ease;
}

.svg-icon:hover {
    transform: scale(1.4);
    color: rgb(121, 121, 121);
}

/* Iconos de redes sociales */
.social-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.social-icon i{
    width: 100%;
    height: 100%;
    color: rgb(153, 151, 151);
    transition: transform 0.3s ease;
}

.social-icon:hover i{
    transform: scale(1.4);
    color: lightgray;
}

.social-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(20, 20, 20, 0.5);
    color: #d3d3d3; /* Color mate y opaco */
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::after {
    opacity: 1;
}

/* Responsividad */
@media (max-width: 768px) {
    .construction h1 {
        font-size: 2rem;
    }

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

    .social-icon, .svg-icon {
        width: 30px;
        height: 30px;
    }

    /* Cambiar disposición de los iconos en pantallas pequeñas */
    .footer-icons-container {
        flex-direction: column;
        gap: 15px;
    }

    .separator {
        display: block; /* Mostrar el separador entre las secciones */
    }
}
