/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tipografía y fondo */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top, #1b2a3a 0%, #0f1720 55%);
    color: #e5e7eb;
    line-height: 1.6;
}

/* Contenedor principal */
.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 2.6rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.header h2 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #9ca3af;
    margin-top: 10px;
}
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.brand img {
    height: 68px;              /* 👈 aquí está la magia */
    opacity: 0.85;
    padding: 8px 12px;
    background-color: rgba(15, 23, 32, 0.6);
    border-radius: 6px;
}

.titles h1 {
    font-size: 2.6rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.titles h2 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #9ca3af;
    margin-top: 6px;
}

/* Contenido */
.content {
    border-top: 1px solid #1f2933;
    border-bottom: 1px solid #1f2933;
    padding: 40px 0;
    margin-bottom: 40px;
}

.content p {
    margin-bottom: 20px;
}

.status {
    font-size: 1.1rem;
    color: #f9fafb;
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.95rem;
    color: #9ca3af;
}

.footer a {
    color: #60a5fa;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .brand img {
        height: 52px;
    }
}
}
.header::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #3b82f6;
    margin: 20px auto 0;
    opacity: 0.6;
}