:root {
    --color-red: #D50000;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-orange: #E65100;
    /* Darker orange base */
    --color-orange-light: #F57C00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Attention Bar */
.attention-bar {
    background-color: var(--color-red);
    color: var(--color-white);
    text-align: center;
    font-weight: 700;
    padding: 10px 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    width: 100%;
}

/* Main Container */
.container {
    max-width: 600px;
    /* Mobile focused max-width */
    margin: 0 auto;
    padding: 20px 15px;
    text-align: center;
    flex: 1;
}

/* Headline */
.headline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--color-white);
}

/* Video Container & Overlay */
.video-container {
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Vertical video aspect ratio approximation */
    background-color: var(--color-orange-light);
    position: relative;
    border-radius: 4px;
    /* Slight rounding */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    background: linear-gradient(180deg, rgba(230, 81, 0, 1) 0%, rgba(245, 124, 0, 1) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.overlay-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.btn-resume,
.btn-restart {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
    justify-content: center;
    transition: background 0.2s;
}

.btn-resume:hover,
.btn-restart:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.icon-play,
.icon-replay {
    font-size: 1.2rem;
}

/* Footer / Logos */
footer {
    background-color: var(--color-black);
    padding: 20px 0;
    margin-top: auto;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFCA28;
    /* Goldish yellow */
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* CSS Graphics for Logos (Mockups) */

/* Aparecida */
.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #FFCA28;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 5px;
    overflow: hidden;
}

.triangle-blue {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid #0D47A1;
}

/* Redevida */
.logo-star {
    font-size: 2.5rem;
    color: #FFCA28;
    line-height: 1;
    margin-bottom: 5px;
}

/* Canção Nova */
.box-white {
    background-color: white;
    color: #0277BD;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
}

.bird-icon {
    font-size: 1.5rem;
}

.box-white span {
    display: block;
    line-height: 1;
}

.box-white small {
    font-size: 0.6em;
    color: #555;
    letter-spacing: 1px;
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .headline {
        font-size: 2.5rem;
    }

    .video-container {
        aspect-ratio: 16 / 9;
        /* Desktop maybe 16:9? Or keep vertical if it's mobile first VSL */
        max-width: 400px;
        /* Keep it phone sized on desktop? */
        margin: 0 auto;
    }
}