@charset "utf-8";
/* CSS Document */

/* Estilos básicos y tipografía */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at top left, #f1f5f9, #0f172a);
    color: #0f172a;
    min-height: 100vh;
}

/* Contenedor principal centrado */
.construction-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Tarjeta */
.construction-card {
    background: #ffffff;
    max-width: 520px;
    width: 100%;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
    text-align: center;
}

/* Encabezado / marca */
.construction-header {
    margin-bottom: 1.75rem;
}

/* Nuevo: estilo para el logo */
.logo {
    max-width: 220px;      /* ancho máximo del logo */
    height: auto;          /* mantiene proporciones */
    display: block;
    margin: 0 auto 0.25rem; /* centrado + pequeño margen inferior */
}


.brand-name {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
}

/* Título principal */
.construction-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1f2933;
}

/* Párrafo descriptivo */
.construction-text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Bloque de contacto */
.contact-block {
    background: #f1f5f9;
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-block a {
    color: #2563eb;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

/* Redes sociales */
.social-block {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-links a {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    color: #0f172a;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Pie de página */
.construction-footer {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 480px) {
    .construction-card {
        padding: 2rem 1.25rem;
    }

    .construction-title {
        font-size: 1.4rem;
    }

    .construction-text {
        font-size: 0.95rem;
    }
}
