﻿*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #AFB3B7; /* fondo principal */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    background-color: #132E35;
    padding: 10px 0; /* solo vertical para no afectar el ancho */
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center; /* centra verticalmente */
}

    header img {
        height: 70px;
        display: block; /* elimina espacios inline */
        margin: 0 auto; /* refuerzo centrar */

    }

.container {
    max-width: 800px;
    width: 100%;
    margin: 30px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.title {
    font-size: 16pt;
    font-weight: bold;
    color: #69838D; /* título con acento */
    margin-bottom: 5px;
}

.date {
    font-size: 11pt;
    color: #5A636A; /* tono medio para fecha */
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }


footer {
    max-width: 800px;
    width: 100%;
    background-color: #5A636A; /* mismo tono que header */
    color: white;
    border-radius: 10px;
    padding: 25px 20px;
    margin: 0 20px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.2;
}
.legal-text {
    text-align: justify;
    margin-bottom: 20px;
    font-size: 10pt; /* tamaño más pequeño */
    line-height: 1.2;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .footer-links.centered {
        justify-content: center;
        text-align: center;
    }

    .aviso_a {
        font-size: 11pt;
        color: #AFB3B7;
        text-decoration: none;
    }

        .aviso_a:hover {
            text-decoration: underline;
            color: white;
        }

.whatsapp-button {
    background-color: #5A636A;
    color: #ffffff; /* gris oscuro para el texto */
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #B0B4B8;
    transition: background-color 0.3s ease;
}

    .whatsapp-button:hover {
        background-color: #BDC1C4;
        color: #5A636A;
    }