:root {
    --videos-blue: #009fe3;
    --videos-blue-dark: #007daf;
    --videos-blue-deep: #006c9d;
    --videos-blue-light: #e8f7fd;
    --videos-blue-soft: #f4fbfe;

    --videos-green: #9eb73b;

    --videos-text: #172b3a;
    --videos-text-soft: #526675;
    --videos-text-light: #71808d;

    --videos-white: #ffffff;
    --videos-background: #f4f7f9;
    --videos-border: #d7eaf3;
    --videos-border-strong: #bce2f2;

    --videos-shadow:
        0 14px 34px rgba(15, 56, 78, 0.08);

    --videos-shadow-blue:
        0 16px 38px rgba(0, 159, 227, 0.11);

    --videos-radius: 18px;
    --videos-max-width: 1480px;
    --videos-padding: clamp(20px, 5vw, 72px);
}

.videos-page,
.videos-page *,
.videos-page *::before,
.videos-page *::after {
    box-sizing: border-box;
}

.videos-page {
    width: 100%;
    min-height: 100vh;

    background: var(--videos-background);
    color: var(--videos-text);

    font-family:
        "Roboto",
        Arial,
        Helvetica,
        sans-serif;
}

.videos-container {
    width: min(100%, var(--videos-max-width));

    margin-right: auto;
    margin-left: auto;

    padding-right: var(--videos-padding);
    padding-left: var(--videos-padding);
}


/* =========================================
   HERO
========================================= */

.videos-hero {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at 12% 20%,
            rgba(255, 255, 255, 0.15),
            transparent 27%),
        radial-gradient(circle at 84% 20%,
            rgba(158, 183, 59, 0.2),
            transparent 24%),
        linear-gradient(135deg,
            #007fb9 0%,
            #009fe3 55%,
            #38b9ef 100%);
}

.videos-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px);

    background-size: 44px 44px;

    opacity: 0.32;

    pointer-events: none;
}

.videos-hero-conteudo {
    position: relative;
    z-index: 1;

    min-height: 310px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding-top: 58px;
    padding-bottom: 58px;
}

.videos-hero-texto {
    max-width: 800px;
}

.videos-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.videos-hero-label::before {
    content: "";

    width: 5px;
    height: 18px;

    background: var(--videos-green);

    border-radius: 999px;
}

.videos-hero h1 {
    margin: 0;

    color: var(--videos-white);

    font-size: clamp(40px, 4vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;

    text-transform: uppercase;
}

.videos-hero p {
    max-width: 720px;

    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.95);

    font-size: clamp(15px, 1.15vw, 19px);
    line-height: 1.65;
}

.videos-hero-icone {
    width: 112px;
    height: 112px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.16);
    color: var(--videos-white);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;

    box-shadow:
        0 22px 45px rgba(0, 82, 120, 0.22);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.videos-secao {
    padding-top: 54px;
    padding-bottom: 72px;
}

.videos-secao-cabecalho {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 30px;
}

.videos-secao-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 10px;

    color: var(--videos-blue);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.09em;

    text-transform: uppercase;
}

.videos-secao-label::before {
    content: "";

    width: 4px;
    height: 16px;

    background: var(--videos-green);

    border-radius: 999px;
}

.videos-secao-cabecalho h2 {
    margin: 0;

    color: var(--videos-blue-dark);

    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.025em;

    text-transform: uppercase;
}

.videos-secao-cabecalho>p {
    max-width: 520px;

    margin: 0;

    color: var(--videos-text-soft);

    font-size: 15px;
    line-height: 1.7;
}

.videos-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.video-card {
    min-width: 0;

    overflow: hidden;

    background: var(--videos-white);

    border: 1px solid var(--videos-border);
    border-radius: var(--videos-radius);

    box-shadow: var(--videos-shadow);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 159, 227, 0.5);

    box-shadow: var(--videos-shadow-blue);
}

.video-card-link {
    min-height: 100%;

    display: flex;
    flex-direction: column;

    color: inherit !important;

    text-decoration: none !important;
}

.video-card-link:hover {
    color: inherit !important;

    text-decoration: none !important;
}

.video-card-capa {
    position: relative;

    min-height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #008dcc,
            #00a7e8);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video-card-capa::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 45, 70, 0.05) 0%,
            rgba(0, 45, 70, 0.45) 100%);

    pointer-events: none;
}

.video-card-capa-com-imagem {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video-card-capa-icone {
    position: relative;
    z-index: 1;

    color: rgba(255, 255, 255, 0.7);
}

.video-card-play {
    position: absolute;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #009fe3;

    border-radius: 50%;

    box-shadow:
        0 10px 28px rgba(0, 42, 65, 0.3);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.video-card:hover .video-card-play {
    transform: scale(1.1);

    background: #9eb73b;
    color: #ffffff;
}

.video-card-capa-icone {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.28);
}

.video-card-play {
    position: absolute;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--videos-white);
    color: var(--videos-blue);

    border-radius: 50%;

    box-shadow:
        0 10px 28px rgba(0, 74, 108, 0.28);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.video-card:hover .video-card-play {
    transform: scale(1.1);

    background: var(--videos-green);
    color: var(--videos-white);
}

.video-card-conteudo {
    min-height: 250px;

    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 20px;
}

.video-card-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-bottom: 14px;
}

.video-card-tipo {
    display: inline-flex;
    align-items: center;

    min-height: 26px;

    padding: 4px 9px;

    background: var(--videos-blue-light);
    color: var(--videos-blue-dark);

    border: 1px solid #caeaf7;
    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;

    text-transform: uppercase;
}

.video-card-data {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--videos-text-light);

    font-size: 11px;
    font-weight: 600;
}

.video-card-data svg {
    width: 14px;
    height: 14px;
}

.video-card h3 {
    display: -webkit-box;

    margin: 0 0 12px;

    overflow: hidden;

    color: var(--videos-blue-dark);

    font-size: 17px;
    font-weight: 900;
    line-height: 1.4;

    text-transform: none;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.video-card-descricao {
    display: -webkit-box;

    margin: 0;

    overflow: hidden;

    color: var(--videos-text-soft);

    font-size: 13px;
    line-height: 1.65;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.video-card-sem-descricao {
    color: var(--videos-text-light);
    font-style: italic;
}

.video-card-rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-top: auto;
    padding-top: 18px;

    color: var(--videos-blue-dark);

    border-top: 1px solid var(--videos-border);

    font-size: 13px;
    font-weight: 800;
}

.video-card-seta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease;
}

.video-card:hover .video-card-seta {
    transform: translateX(4px);
}

.videos-vazio {
    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    padding: 32px;

    background: var(--videos-white);

    border: 1px dashed var(--videos-border-strong);
    border-radius: var(--videos-radius);

    box-shadow: var(--videos-shadow);
}

.videos-vazio-icone {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--videos-blue-light);
    color: var(--videos-blue);

    border-radius: 50%;
}

.videos-vazio h2 {
    margin: 0 0 6px;

    color: var(--videos-blue-dark);

    font-size: 20px;
    font-weight: 900;
}

.videos-vazio p {
    margin: 0;

    color: var(--videos-text-soft);

    font-size: 14px;
}

.videos-paginacao {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}

.videos-paginacao nav {
    width: auto;
}

.videos-paginacao .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.videos-paginacao .page-item {
    margin: 0;
}

.videos-paginacao .page-link {
    min-width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    background: var(--videos-white);
    color: var(--videos-blue-dark);

    border: 1px solid var(--videos-border);
    border-radius: 10px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 5px 14px rgba(15, 56, 78, 0.05);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.videos-paginacao .page-link:hover {
    transform: translateY(-2px);

    background: var(--videos-blue-soft);
    color: var(--videos-blue);

    border-color: var(--videos-blue);
}

.videos-paginacao .page-item.active .page-link {
    background: var(--videos-blue);
    color: var(--videos-white);

    border-color: var(--videos-blue);
}

.videos-paginacao .page-item.disabled .page-link {
    opacity: 0.5;

    cursor: not-allowed;

    transform: none;
}

.videos-page [uk-icon] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    line-height: 0;
}

@media screen and (max-width: 1200px) {
    .videos-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 900px) {
    .videos-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .videos-secao-cabecalho {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .videos-hero-icone {
        width: 92px;
        height: 92px;
    }
}

@media screen and (max-width: 700px) {
    :root {
        --videos-padding: 16px;
    }

    .videos-hero-conteudo {
        min-height: auto;

        padding-top: 46px;
        padding-bottom: 46px;
    }

    .videos-hero h1 {
        font-size: 36px;
    }

    .videos-hero p {
        font-size: 15px;
    }

    .videos-hero-icone {
        display: none;
    }

    .videos-secao {
        padding-top: 38px;
        padding-bottom: 48px;
    }

    .videos-secao-cabecalho h2 {
        font-size: 28px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-card-capa {
        min-height: 190px;
    }

    .video-card-conteudo {
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .videos-hero h1 {
        font-size: 31px;
    }

    .videos-secao-cabecalho h2 {
        font-size: 25px;
    }

    .video-card-capa {
        min-height: 165px;
    }

    .video-card-conteudo {
        padding: 17px;
    }

    .video-card-topo {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .videos-vazio {
        align-items: flex-start;
        flex-direction: column;

        min-height: auto;

        text-align: left;
    }
}

.video-detalhe-iframe,
.videos-page iframe,
iframe.video-player {
    display: block;

    width: min(100%, 1100px);
    aspect-ratio: 16 / 9;
    height: auto;

    margin-right: auto;
    margin-left: auto;

    border: 0;
    border-radius: 18px;

    box-shadow:
        0 16px 42px rgba(15, 56, 78, 0.12);
}

.video-detalhe-page {
    width: 100%;
    min-height: 100vh;
    background: var(--videos-background, #f4f7f9);
    color: var(--videos-text, #172b3a);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.video-detalhe-page *,
.video-detalhe-page *::before,
.video-detalhe-page *::after {
    box-sizing: border-box;
}

.video-detalhe-container {
    width: min(100%, 1480px);
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(20px, 5vw, 72px);
    padding-left: clamp(20px, 5vw, 72px);
}

.video-detalhe-hero {
    position: relative;
    overflow: hidden;
    padding-top: 44px;
    padding-bottom: 58px;
    background:
        radial-gradient(circle at 12% 20%,
            rgba(255, 255, 255, 0.15),
            transparent 27%),
        radial-gradient(circle at 84% 22%,
            rgba(158, 183, 59, 0.2),
            transparent 24%),
        linear-gradient(135deg,
            #007fb9 0%,
            #009fe3 55%,
            #38b9ef 100%);
}

.video-detalhe-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px);
    background-size: 44px 44px;
    opacity: 0.32;
    pointer-events: none;
}

.video-detalhe-hero .video-detalhe-container {
    position: relative;
    z-index: 1;
}

.video-detalhe-voltar {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.video-detalhe-voltar:hover {
    color: #ffffff !important;
    transform: translateX(-3px);
    text-decoration: none !important;
}

.video-detalhe-voltar svg {
    width: 16px;
    height: 16px;
}

.video-detalhe-apresentacao {
    display: flex;
    align-items: center;
    gap: 26px;
}

.video-detalhe-icone {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 42px rgba(0, 78, 118, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-detalhe-icone svg {
    width: 40px;
    height: 40px;
}

.video-detalhe-titulo {
    min-width: 0;
}

.video-detalhe-titulo h1 {
    max-width: 1100px;
    margin: 0;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.video-detalhe-metadados {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.video-detalhe-metadado {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.video-detalhe-metadado svg {
    width: 15px;
    height: 15px;
}

.video-detalhe-album-link {
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.video-detalhe-album-link:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.42);
    transform: translateY(-1px);
}

.video-detalhe-secao {
    padding-top: 48px;
    padding-bottom: 72px;
}

.video-detalhe-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d7eaf3;
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(15, 56, 78, 0.09);
}

.video-detalhe-card-cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 28px;
    background:
        linear-gradient(135deg,
            #fbfdfe,
            #f4fbfe);
    border-bottom: 1px solid #d7eaf3;
}

.video-detalhe-card-titulo {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.video-detalhe-card-icone {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e8f7fd;
    color: #009fe3;
    border: 1px solid #c8eaf7;
    border-radius: 13px;
}

.video-detalhe-card-icone svg {
    width: 22px;
    height: 22px;
}

.video-detalhe-card-titulo h2 {
    margin: 0;
    color: #007daf;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
}

.video-detalhe-card-titulo p {
    margin: 4px 0 0;
    color: #71808d;
    font-size: 13px;
    line-height: 1.4;
}

.video-detalhe-categoria {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 8px 13px;
    background: #e8f7fd;
    color: #007daf !important;
    border: 1px solid #c8eaf7;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.video-detalhe-categoria:hover {
    background: #009fe3;
    color: #ffffff !important;
    border-color: #009fe3;
}

.video-detalhe-categoria svg {
    width: 15px;
    height: 15px;
}

.video-detalhe-player-container {
    padding: clamp(20px, 3vw, 38px);
    background:
        linear-gradient(135deg,
            #edf3f6,
            #f8fbfd);
}

.video-detalhe-player {
    position: relative;
    width: min(100%, 1180px);
    aspect-ratio: 16 / 9;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    background: #071923;
    border: 1px solid rgba(0, 159, 227, 0.25);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(7, 25, 35, 0.22);
}

.video-detalhe-player iframe,
.video-detalhe-player video,
.video-detalhe-player embed,
.video-detalhe-player object {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    border: 0;
    border-radius: 0;
}

.video-detalhe-rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 28px;
    background: #f8fbfd;
    border-top: 1px solid #d7eaf3;
}

.video-detalhe-informacao {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.video-detalhe-informacao-icone {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e8f7fd;
    color: #009fe3;
    border-radius: 12px;
}

.video-detalhe-informacao-icone svg {
    width: 19px;
    height: 19px;
}

.video-detalhe-informacao strong {
    display: block;
    margin-bottom: 2px;
    color: #172b3a;
    font-size: 14px;
    font-weight: 800;
}

.video-detalhe-informacao p {
    margin: 0;
    overflow-wrap: anywhere;
    color: #71808d;
    font-size: 12px;
}

.video-detalhe-botao {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 0 17px;
    background: #009fe3;
    color: #ffffff !important;
    border: 1px solid #009fe3;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 9px 20px rgba(0, 159, 227, 0.22);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.video-detalhe-botao:hover {
    transform: translateY(-2px);
    background: #007daf;
    color: #ffffff !important;
    border-color: #007daf;
    box-shadow: 0 12px 25px rgba(0, 159, 227, 0.28);
    text-decoration: none !important;
}

.video-detalhe-botao svg {
    width: 16px;
    height: 16px;
}

.video-detalhe-page [uk-icon] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

@media screen and (max-width: 900px) {

    .video-detalhe-card-cabecalho,
    .video-detalhe-rodape {
        align-items: flex-start;
        flex-direction: column;
    }

    .video-detalhe-botao {
        align-self: stretch;
    }
}

@media screen and (max-width: 700px) {
    .video-detalhe-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .video-detalhe-hero {
        padding-top: 30px;
        padding-bottom: 42px;
    }

    .video-detalhe-voltar {
        margin-bottom: 24px;
    }

    .video-detalhe-apresentacao {
        align-items: flex-start;
        gap: 16px;
    }

    .video-detalhe-icone {
        width: 64px;
        height: 64px;
        border-radius: 17px;
    }

    .video-detalhe-icone svg {
        width: 29px;
        height: 29px;
    }

    .video-detalhe-titulo h1 {
        font-size: 30px;
    }

    .video-detalhe-metadados {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .video-detalhe-metadado {
        white-space: normal;
    }

    .video-detalhe-secao {
        padding-top: 30px;
        padding-bottom: 48px;
    }

    .video-detalhe-card {
        border-radius: 16px;
    }

    .video-detalhe-card-cabecalho {
        padding: 20px;
    }

    .video-detalhe-player-container {
        padding: 16px;
    }

    .video-detalhe-player {
        border-radius: 12px;
    }

    .video-detalhe-rodape {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .video-detalhe-apresentacao {
        flex-direction: column;
    }

    .video-detalhe-icone {
        width: 58px;
        height: 58px;
    }

    .video-detalhe-titulo h1 {
        font-size: 27px;
    }

    .video-detalhe-card-titulo {
        align-items: flex-start;
    }

    .video-detalhe-card-titulo h2 {
        font-size: 18px;
    }

    .video-detalhe-categoria {
        white-space: normal;
    }

    .video-detalhe-player-container {
        padding: 10px;
    }

    .video-detalhe-rodape {
        gap: 20px;
    }

    .video-detalhe-botao {
        width: 100%;
    }

    .video-detalhe-informacao {
        align-items: flex-start;
    }
}