:root {
    /* ================================================================
       PALETA CORREGIDA: BLANCO URBANO Y ROJO DE ALTA COSTURA
       ================================================================ */
    --logo-bg-light: #ffffff;    /* Fondo principal blanco puro */
    --logo-panel-soft: #fcfcfc;  /* Fondo del panel alterno, blanco editorial */
    --logo-accent: #d62828;      /* Rojo vibrante y elegante de tu logo */
    --logo-text-dark: #1a1a1a;   /* Texto principal oscuro para contraste nítido */
    --text-muted: #555555;       /* Gris sofisticado para textos secundarios */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f7f7f9; /* Fondo de pantalla gris extremadamente claro */
    font-family: 'Montserrat', sans-serif;
    color: var(--logo-text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Estructura Principal */
.editorial-container {
    background-color: var(--logo-bg-light);
    border: 1px solid rgba(214, 40, 40, 0.2); /* Borde sutil rojo */
    max-width: 1100px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Barra de Estado del Atelier en Rojo */
.construction-ribbon {
    background-color: var(--logo-accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    padding: 12px 20px;
    text-align: center;
    text-transform: uppercase;
}
.construction-ribbon i {
    margin-right: 8px;
}

/* Grid Adaptable */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 850px) {
    .main-grid {
        grid-template-columns: 1.1fr 1.3fr;
    }
}

/* Panel Izquierdo: Contenedor del Logo con fondo limpio */
.logo-panel {
    position: relative;
    background-color: var(--logo-panel-soft); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    height: 400px;
    border-bottom: 1px solid rgba(214, 40, 40, 0.15);
}

@media (min-width: 850px) {
    .logo-panel {
        height: 600px;
        border-bottom: none;
        border-right: 1px solid rgba(214, 40, 40, 0.15);
    }
}

.brand-logo-img {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    z-index: 2;
}

.panel-bg-blend {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--logo-accent) 0%, transparent 75%);
    opacity: 0.03; /* Destello rojo levísimo en el fondo */
    z-index: 1;
}

/* Panel Derecho: Textos y Enlaces */
.content-panel {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--logo-bg-light);
}

@media (min-width: 850px) {
    .content-panel {
        padding: 50px;
    }
}

.brand-header .sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--logo-accent);
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.brand-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--logo-text-dark);
}

.brand-divider {
    width: 50px;
    height: 1px;
    background-color: var(--logo-accent);
    margin: 25px 0;
}

/* Cuadro Informativo Dinámico */
.status-block {
    background-color: #fafafa;
    border-left: 3px solid var(--logo-accent);
    padding: 22px;
    margin-bottom: 35px;
}

.block-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

/* Punto intermitente rojo */
.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--logo-accent);
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.4); opacity: 0.8; }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(214, 40, 40, 0); opacity: 0.2; }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(214, 40, 40, 0); opacity: 0.8; }
}

.block-header .title-note {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--logo-accent);
    font-weight: 600;
}

.note-body p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    transition: opacity 0.25s ease, color 0.25s ease;
}

/* Enlaces de Interacción Corporativa */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.action-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--logo-text-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.action-link .btn-icon {
    color: var(--logo-accent);
    font-size: 15px;
    transition: transform 0.3s ease;
}

/* Hover: El botón se tiñe completamente de rojo */
.action-link:hover {
    background-color: var(--logo-accent);
    border-color: var(--logo-accent);
    color: #ffffff; /* El texto pasa a blanco para máxima legibilidad */
    padding-left: 30px;
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.15);
}

.action-link:hover .btn-icon {
    color: #ffffff;
    transform: translateX(4px);
}

.editorial-footer p {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.05em;
}