﻿

body {
  font-family: 'Urbanist', sans-serif;
  background-color: #dcddde;
  color: var(--color-texto);
  transition: background 0.3s, color 0.3s;
}

h2 {
  text-align: center;
  font-size: 3rem;
}

/* =======================
   PÁGINA DE MANTENIMIENTO
======================= */
.mantenimiento-container {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.mantenimiento-logo {
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
    padding: 20px;
}

.mantenimiento-texto {
    font-size: 2rem;
    font-weight: 600;
    color: #77787b;
    margin-bottom: 50px;
}

.mantenimiento-redes {
    display: flex;
    gap: 20px;
}

.mantenimiento-redes img {
    width: 36px;
    height: 36px;
    cursor: pointer;
    filter: brightness(0.85);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.mantenimiento-redes img:hover {
    filter: brightness(1) saturate(1.3);
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .mantenimiento-logo {
        max-width: 300px;
        padding: 15px;
    }

    .mantenimiento-texto {
        font-size: 1.2rem;
    }

    .mantenimiento-redes img {
        width: 28px;
        height: 28px;
    }
}
