body {
        background: #002B7F;
        margin: 10px;
        padding: 0;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    .container {
        width: 100%;
        min-height: calc(100vh - 20px);
        display: flex;
        gap: 10px;
        margin: 0;
    }
    .col_video {
        height: 100%;
        display: flex;
        max-height: 98vh;
        width: 100%;
        min-height: 380px;
    }
    .col_video iframe {
        width: 100% !important;
        height: auto !important;
    }

    .col_action {
        padding: 50px 0;
        min-width: 300px;
        display: flex;
        gap: 50px;
        text-align: center;
        background: #fff;
        align-items: center;
        flex-direction: column;
    }
    .col_video iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 1920 / 1080;
    }

    @media ( orientation: portrait ) {
        

        .container {
            flex-direction: column;
            justify-content: flex-start;
        }

        .col_action {
            min-height: 320px;
            gap: 30px;
            width: 100%;
            justify-content: center;
        }

        .col_video {
            height: auto;
            aspect-ratio: 1920 / 1080;
        }

    }

    .btn { 
        font-family: "Anton", sans-serif; 
        display: block; 
        font-weight: 400;
        font-style: normal;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        text-align: center;
        border-radius: 8px;
        transition: opacity .2s linear;
        text-decoration: none!important;
    }
    .btn:hover {
        opacity: 0.85;
    }

    .btn-programa {
        font-size: 1em;
        letter-spacing: .05em;
        background-color: #002B7F;
        color: #fff;
        box-shadow: #e0b705 0px 4px 0px;
        padding: 15px 20px;
    }
    

    .hurdo-box {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        font-weight: 700;
        color: #fff;
        background: #002B7F;
        padding: 20px 0;
        width: 100%;
    }

    .hurdo-box h3 {
        font-size: 1rem;
        color: #e0b705;
        margin: 0;
    }

    #countdown {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: .5rem;
    }

    #countdown .unit {
        text-align: center;
    }

    #countdown .num {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
        display: block;
    }

    #countdown .label {
        font-size: .6rem;
        display: block;
        margin-top: .2rem;
        text-transform: uppercase;
        opacity: .8;
    }

    #countdown .sep {
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1;
        padding: .3rem 0 0;
    }
    #cd-sec { color: #e0b705; }


    .btn-hurdo {
        background-color: #fff;
        color: #002B7F;
        box-shadow: #e0b705 0px 4px 0px;
        padding: .5em 1em .4em;
        font-size: 1.1rem;
        margin: .5rem 0;
    }

    @keyframes shake {
        0%   { transform: translateY(0); }
        30%  { transform: translateY(-2px); }
        60%  { transform: translateY(1px); }
        100% { transform: translateY(0); }
    }

    .shake {
        animation: shake .25s ease-out;
    }