 body {
            min-height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #f5f5f5;
            font-family: Arial, sans-serif;
        }
 
 .main-header {
        top: 0;
        left: 0;
        width: 100vw;
        min-height: 100px;
        background: #861e13;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        z-index: 1000;
    }
.main-header-text {
    color: #fff;
    font-family: Impact, Charcoal, 'Arial Black', sans-serif;
    font-size: 2.7em;
    font-style: italic;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    user-select: none;
    margin-top: 18px;
    line-height: 1.1;
}

#sub-footer {
        width: 100vw;
        background: #f5f5f5;
        border-top: 1px solid #e0e0e0;
        left: 0;
        bottom: 0;
        z-index: 999;
    }
#sub-footer-core {
    max-width: 900px;
    margin: 0 auto;
    padding: 22px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85em;
}
.copyright {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.mispoliticas {
    margin-bottom: 6px;
}
.mispoliticas a {
    color: #555;
    font-size: 0.85em;
    text-decoration: underline;
    margin: 0 2px;
}
.mispoliticas a:hover {
    color: #2980b9;
}
.micopyright {
    color: #888;
    font-size: 0.85em;
}
@media (max-width: 600px) {
    #sub-footer-core { font-size: 0.85em; }
    .mispoliticas a, .micopyright { font-size: 0.85em; }
}

.info-msg {
    max-width: 600px;
    min-width: 320px;
    background: #f9f6e7;
    border: 1.5px solid #f1e1a6;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.12);
    padding: 32px 24px 24px 24px;
    margin: 60px auto 30px auto; /* separación de 3 líneas aprox */
    text-align: center;
    font-size: 1.08em;
    color: #333;
    font-weight: 500;
    display: block;
}
.info-msg .info-title {
    font-weight: bold;
    display: block;
    margin-bottom: 1.2em;
    font-size: 1.13em;
}
.info-msg .info-line {
    display: block;
    margin-bottom: 0.7em;
}
.info-msg a {
    color: #c0392b;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s;
}
.info-msg a:hover {
    color: #2980b9;
    text-decoration: underline;
}

h1 {
            margin-bottom: 5px;
            color: #2c3e50;
            text-align: center;
            font-size: 1.9rem;
            letter-spacing: 1px;
        }


