/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f4f5f7;
    color: #333333;
    line-height: 1.6;
}

/* Layout principal */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Encabezado */
.header {
    padding: 32px 20px 12px;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 260px;
    height: auto;
}

/* Contenido */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px 40px;
}

.message {
    max-width: 720px;
    text-align: center;
    margin-bottom: 32px;
}

.message h1 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2b2e3a;
}

.message p {
    font-size: 0.98rem;
    color: #555555;
}

/* Tarjetas de oficinas */
.offices {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.office-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #0055c9; /* tono azul corporativo */
}

.office-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #222;
}

.office-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7a7d86;
    margin-top: 6px;
    margin-bottom: 2px;
}

.office-text {
    font-size: 0.9rem;
    color: #444;
}

/* Footer */
.footer {
    text-align: center;
    padding: 18px 10px 22px;
    font-size: 0.8rem;
    color: #777777;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: #f9fafb;
}

/* Responsivo */
@media (min-width: 720px) {
    .message h1 {
        font-size: 2.2rem;
    }

    .message p {
        font-size: 1.02rem;
    }

    .offices {
        grid-template-columns: repeat(3, 1fr);
    }
}
