
/* ========================================
   CONFIGURAÇÕES GERAIS
======================================== */


/* Fonte Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
   font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #222222;
    overflow-x: hidden;
}


/* ========================================
   ESTRUTURA PRINCIPAL
======================================== */

header,
main,
footer {
    width: 100%;
}

/* ========================================
   ANIMAÇÃO DE APARECIMENTO
======================================== */


/* =========================================
   ANIMAÇÃO DE ENTRADA DOS CONTEÚDOS
========================================= */

[data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Acessibilidade: respeita preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

/* Acessibilidade: reduzir animações */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ==========================================
   ESPORTELIFE - CABEÇALHO
========================================== */

:root {
    --esporte-blue: #071b50;
    --esporte-blue-light: #102e9c;
    --esporte-yellow: #d4c97a;
    --esporte-white: #ffffff;
}

/* TOPO */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: var(--esporte-blue);
}

/* ÁREA SUPERIOR COM TEXTURA CLEAN */

.header-top {
    position: relative;
    isolation: isolate;
    min-height: 72px;
    background:
        radial-gradient(circle at 82% 160%, rgba(37, 79, 154, .22), transparent 46%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 15px),
        linear-gradient(110deg, #031238 0%, #071b50 52%, #0a245e 100%);
    border-top: 1px solid rgba(212, 201, 122, .48);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .05);
}

.header-top::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .34;
    background-image: radial-gradient(rgba(255, 255, 255, .18) .7px, transparent .7px);
    background-size: 11px 11px;
    mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}

.header-container {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 1440px);
    min-height: 72px;
    margin: 0 auto;

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

/* LOGO */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 10px 0;
    padding: 6px 10px;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* SLOGAN */

.header-slogan {
    display: flex;
    flex-direction: column;
    gap: 3px;

    color: var(--esporte-white);
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
}

.header-slogan strong {
    color: var(--esporte-yellow);
    font-size: 12px;
    font-weight: 700;
}

/* REDES SOCIAIS */

.header-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: var(--esporte-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;

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

.social-link svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.social-link .social-fill {
    fill: currentColor;
    stroke: none;
}

.social-link .social-play {
    fill: currentColor;
    stroke: none;
}

.social-facebook {
    font-family: Arial, sans-serif;
}

.social-link:hover {
    color: var(--esporte-yellow);
    transform: translateY(-2px);
}

/* ==========================================
   MENU PRINCIPAL
========================================== */

.main-navigation {
    width: 100%;

    background:
        linear-gradient(
            110deg,
            #102ca1 0%,
            #071b70 100%
        );

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 3px solid #07133e;
    box-shadow: 0 4px 14px rgba(3, 12, 39, .18);
}

.navigation-container {
    width: min(100% - 40px, 1440px);
    min-height: 40px;
    margin: 0 auto;

    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* LINKS */

.nav-link {
    position: relative;

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

    padding: 0 16px;
    min-height: 40px;

    color: var(--esporte-white);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;

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

.nav-link:hover {
    color: var(--esporte-yellow);
    background: rgba(0, 0, 0, 0.18);
}

/* ITEM ATIVO */

.nav-link.active {
    color: var(--esporte-yellow);
    background: rgba(0, 0, 0, 0.2);
}

.nav-link.active::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--esporte-yellow);
}

/* DESTAQUE ESPORTE É VIDA */

.nav-highlight {
    margin-left: auto;
    color: var(--esporte-yellow);

    background: rgba(0, 0, 0, 0.12);
}

/* BOTÃO MOBILE */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;
    padding: 9px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;

    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;

    background: var(--esporte-white);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* ==========================================
   RESPONSIVIDADE
========================================== */

/* NOTEBOOKS E TABLETS */

@media (max-width: 1100px) {

    .header-container {
        gap: 20px;
    }

    .brand-logo {
        width: 230px;
    }

    .header-slogan {
        font-size: 11px;
    }

    .header-social {
        gap: 14px;
    }

    .navigation-container {
        width: 100%;
    }

    .nav-link {
        padding: 0 11px;
        font-size: 10px;
    }
}

/* TABLETS E CELULARES */

@media (max-width: 768px) {

    .header-top {
        background:
            repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 14px),
            linear-gradient(110deg, #031238, #071b50 65%, #0a245e);
    }

    .header-container {
        width: calc(100% - 30px);
        min-height: 70px;
        gap: 15px;
    }

    .brand-logo {
        width: 220px;
    }

    .header-slogan,
    .header-social {
        display: none;
    }

    .menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    /* MENU RECOLHIDO */

    .main-navigation {
        display: none;

        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation.is-open {
        display: block;
    }

    .navigation-container {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        justify-content: flex-start;

        min-height: 46px;
        padding: 0 22px;

        font-size: 13px;

        border-bottom: 1px solid
            rgba(255, 255, 255, 0.08);
    }

    .nav-link.active::after {
        top: 0;
        bottom: 0;

        width: 4px;
        height: 100%;
    }

    .nav-highlight {
        margin-left: 0;
    }

    /* ANIMAÇÃO DO BOTÃO */

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* CELULARES PEQUENOS */

@media (max-width: 380px) {

    .brand-logo {
        width: 190px;
    }

    .header-container {
        width: calc(100% - 20px);
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }
}




/* ========================================
   DESTAQUES DE NOTÍCIAS — ESPORTELIFE
======================================== */

.novo-bloco {
    width: 100%;
    min-width: 0;
    padding: 30px 0;
    box-sizing: border-box;
}

.news-highlights {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Grade: uma notícia grande + quatro menores */

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    gap: 3px;
    width: 100%;
}

/* Cartões */

.news-card {
    position: relative;
    min-width: 0;
    min-height: 190px;
    overflow: hidden;
    background: #102b50;
    isolation: isolate;
}

/* Notícia principal */

.news-card.news-featured {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 396px;
}

/* Link ocupa todo o cartão */

.news-card-link {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

/* Imagem */

.news-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 700ms ease;
    will-change: transform;
}

/* Zoom suave */

.news-card-link:hover .news-image img,
.news-card-link:focus-visible .news-image img {
    transform: scale(1.12);
}

/* Degradê azul: concentrado na metade inferior */

.news-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(4, 24, 58, 0.96) 0%,
        rgba(4, 24, 58, 0.82) 22%,
        rgba(4, 24, 58, 0.48) 38%,
        rgba(4, 24, 58, 0.12) 50%,
        rgba(4, 24, 58, 0) 58%
    );
}

/* Conteúdo sobre a imagem */

.news-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 18px;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Categoria */

.news-category {
    display: inline-block;
    width: fit-content;
    padding: 4px 7px;
    margin-bottom: 8px;
    background: #D7CC75;
    color: #14213D;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Títulos */

.news-content h2,
.news-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.22;
    overflow-wrap: break-word;
}

/* Título da notícia principal */

.news-featured .news-content h2 {
    font-size: 27px;
    line-height: 1.22;
}

/* Títulos das notícias menores */

.news-card:not(.news-featured) .news-content h3 {
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 7px;
}

/* Resumo da notícia principal */

.news-featured .news-content p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

/* Data */

.news-date {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
}

/* Botão LER MATÉRIA */

.news-read-more {
    display: inline-block;
    width: fit-content;
    margin-top: 10px;
    padding: 7px 11px;
    background: #D7CC75;
    color: #14213D;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 250ms ease, color 250ms ease;
}

.news-read-more:hover {
    background: #c8bb5c;
    color: #0b1930;
}

/* Foco pelo teclado */

.news-card-link:focus-visible {
    outline: 3px solid #D7CC75;
    outline-offset: -3px;
}

/* ========================================
   TABLETS
======================================== */

@media (max-width: 900px) {
    .news-highlights {
        padding: 0 16px;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px repeat(2, 190px);
        gap: 12px;
    }

    .news-card.news-featured {
        grid-column: 1 / 3;
        grid-row: 1;
        min-height: 300px;
    }

    .news-content {
        padding: 16px;
    }

    .news-featured .news-content h2 {
        font-size: 24px;
    }

    .news-card:not(.news-featured) .news-content h3 {
        font-size: 14px;
    }
}

/* ========================================
   CELULARES
======================================== */

@media (max-width: 600px) {
    .novo-bloco {
        padding: 20px 0;
    }

    .news-highlights {
        padding: 0 12px;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px repeat(2, 175px);
        column-gap: 10px;
        row-gap: 16px;
    }

    .news-card {
        border-radius: 4px;
    }

    .news-card.news-featured {
        grid-column: 1 / 3;
        grid-row: 1;
        min-height: 260px;
    }

    .news-content {
        padding: 13px;
    }

    .news-featured .news-content h2 {
        font-size: 21px;
        line-height: 1.22;
    }

    .news-card:not(.news-featured) .news-content h3 {
        font-size: 13px;
        line-height: 1.25;
    }

    .news-featured .news-content p {
        font-size: 12px;
        line-height: 1.35;
    }

    .news-category {
        padding: 3px 6px;
        margin-bottom: 7px;
        font-size: 8px;
    }

    .news-date {
        font-size: 9px;
    }

    .news-read-more {
        margin-top: 8px;
        padding: 6px 9px;
        font-size: 9px;
    }
}

/* Celulares estreitos */

@media (max-width: 380px) {
    .news-grid {
        grid-template-rows: 230px repeat(2, 165px);
        column-gap: 8px;
        row-gap: 14px;
    }

    .news-card.news-featured {
        min-height: 230px;
    }

    .news-content {
        padding: 11px;
    }

    .news-featured .news-content h2 {
        font-size: 19px;
    }

    .news-card:not(.news-featured) .news-content h3 {
        font-size: 12px;
    }
}

/* Dispositivos touch */

@media (hover: none) {
    .news-image img {
        transition: none;
    }

    .news-card-link:hover .news-image img {
        transform: scale(1);
    }
}

h2.mini{font-size:15px;}



/* ========================================
   ARTIGOS + ESPORTELIFE TV
======================================== */

.esl-articles-tv,
.esl-articles-tv * {
    box-sizing: border-box;
}

.esl-articles-tv {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 28px;

    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;

    color: #14213d;
    font-family: 'Montserrat', sans-serif;
}

.esl-articles,
.esl-tv {
    min-width: 0;
}


/* ========================================
   CABEÇALHOS DAS SEÇÕES
======================================== */

.esl-articles-tv .esl-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    min-height: 27px;
    margin-bottom: 10px;
}

.esl-articles-tv .esl-section-heading h2 {
    position: relative;

    margin: 0;
    padding-left: 12px;

    color: #14213d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.esl-articles-tv .esl-section-heading h2::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;
    background: #D7CC75;
}

.esl-articles-tv .esl-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    flex-shrink: 0;

    color: #164b91;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.esl-articles-tv .esl-view-all span {
    font-size: 16px;
    transition: transform 250ms ease;
}

.esl-articles-tv .esl-view-all:hover span {
    transform: translateX(4px);
}


/* ========================================
   ARTIGOS — GRID
======================================== */

.esl-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;

    min-width: 0;
}

.esl-article-card {
    min-width: 0;
    overflow: hidden;

    border: 1px solid #e2e6ec;
    border-radius: 4px;
    background: #fff;

    transition: box-shadow 250ms ease;
}

.esl-article-card:hover {
    box-shadow: 0 4px 14px rgba(20, 33, 61, 0.1);
}

.esl-article-link {
    display: flex;
    flex-direction: column;

    height: 100%;

    color: inherit;
    text-decoration: none;
}


/* Imagens dos artigos */

.esl-article-image {
    position: relative;
	height:192px;

    width: 100%;
    aspect-ratio: 1.85 / 1;
    overflow: hidden;

    background: #e8edf2;
}

.esl-article-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1);
    transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);

    backface-visibility: hidden;
}

.esl-article-link:hover .esl-article-image img {
    transform: scale(1.08);
}


/* Texto dos artigos */

.esl-article-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    min-width: 0;
    padding: 10px;
}

.esl-article-content h3 {
    display: -webkit-box;

    margin: 0 0 10px;
    overflow: hidden;

    color: #17243b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;

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

.esl-article-content time {
    margin-top: auto;

    color: #8490a0;
    font-size: 10px;
    font-weight: 500;
}


/* ========================================
   ESPORTELIFE TV — GRID
======================================== */

.esl-tv-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 10px;

    min-width: 0;
}

.esl-tv-featured,
.esl-tv-side,
.esl-tv-small {
    min-width: 0;
    min-height: 0;
}


/* Coluna dos vídeos menores */

.esl-tv-side {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
}


/* ========================================
   VÍDEOS DO YOUTUBE
======================================== */

.esl-tv-embed {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;

    border-radius: 4px;
    background: #102b50;
}

/* Vídeo principal */

.esl-tv-embed-featured {
    height: 100%;
    min-height: 155px;
    aspect-ratio: auto;
}

/* Iframe incorporado */

.esl-tv-embed iframe {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

    border: 0;
}


/* ========================================
   TABLETS
======================================== */

@media (max-width: 900px) {

    .esl-articles-tv {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .esl-articles-grid {
        gap: 12px;
    }

    .esl-tv-grid {
        grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    }

    .esl-tv-embed-featured {
        min-height: 180px;
    }
}


/* ========================================
   CELULARES
======================================== */

@media (max-width: 600px) {

    .esl-articles-tv {
        padding: 14px;
        gap: 24px;
    }

    .esl-articles-tv .esl-section-heading h2 {
        font-size: 16px;
    }


    /* Artigos */

    .esl-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .esl-article-content {
        padding: 8px;
    }

    .esl-article-content h3 {
        font-size: 12px;
    }

    .esl-article-content time {
        font-size: 9px;
    }


    /* TV */

    .esl-tv-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .esl-tv-embed-featured {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .esl-tv-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 9px;
    }

    .esl-tv-small .esl-tv-embed {
        aspect-ratio: 16 / 9;
    }
}


/* ========================================
   CELULARES ESTREITOS
======================================== */

@media (max-width: 380px) {

    .esl-articles-grid {
        grid-template-columns: 1fr;
    }

    .esl-article-link {
        display: grid;
        grid-template-columns: 38% minmax(0, 1fr);
    }

    .esl-article-image {
        height: 100%;
        aspect-ratio: auto;
    }

    .esl-article-content h3 {
        font-size: 12px;
    }

    .esl-tv-side {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   ACESSIBILIDADE — MOVIMENTO REDUZIDO
======================================== */

@media (prefers-reduced-motion: reduce) {

    .esl-article-image img,
    .esl-articles-tv .esl-view-all span {
        transition: none;
    }
}


/* ========================================
   ESPORTELIFE — ACONTECE E EVENTOS
======================================== */

.esl-home-content,
.esl-home-content * {
    box-sizing: border-box;
}

.esl-home-content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    color: #14213d;
    font-family: 'Montserrat', sans-serif;
}

.esl-happening,
.esl-events-column {
    min-width: 0;
}

/* ========================================
   CABEÇALHOS
======================================== */

.esl-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 27px;
    margin-bottom: 10px;
}

.esl-section-heading h2 {
    position: relative;
    margin: 0;
    padding-left: 12px;
    color: #14213d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.esl-section-heading h2::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #D7CC75;
}

.esl-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    color: #164b91;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.esl-view-all span {
    font-size: 16px;
    transition: transform 250ms ease;
}

.esl-view-all:hover span {
    transform: translateX(4px);
}

/* ========================================
   ACONTECE — ESTRUTURA
======================================== */

.esl-happening-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 10px;
    min-width: 0;
}

/* ========================================
   NOTÍCIA PRINCIPAL
======================================== */

.esl-main-news {
    position: relative;
    min-width: 0;
    min-height: 340px;
    overflow: hidden;
    border-radius: 4px;
    background: #102b50;
}

.esl-main-news-link {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.esl-main-news-link > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.esl-main-news-link:hover > img {
    transform: scale(1.06);
}

.esl-main-news-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(4, 20, 45, 0.98) 0%,
        rgba(4, 20, 45, 0.78) 35%,
        rgba(4, 20, 45, 0.18) 65%,
        rgba(4, 20, 45, 0) 100%
    );
}

.esl-main-news-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 12px;
}

.esl-category {
    display: inline-block;
    padding: 5px 9px;
    margin-bottom: 7px;
    border-radius: 2px;
    background: #D7CC75;
    color: #14213d;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.esl-main-news-content h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.esl-main-news-content p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

/* ========================================
   NOTÍCIAS LATERAIS
======================================== */

.esl-small-news-list {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 7px;
    min-width: 0;
}

.esl-small-news {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid #e2e6ec;
    border-radius: 3px;
    background: #fff;
}

.esl-small-news > a {
    display: grid;
    grid-template-columns: 36% minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    height: 100%;
    min-height: 65px;
    color: inherit;
    text-decoration: none;
}

/* Container recorta o zoom suavemente */

.esl-small-news-image {
    position: relative;
    min-width: 0;
    min-height: 65px;
    overflow: hidden;
    background: #e8edf2;
}

.esl-small-news-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 65px;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
}

/* Zoom suave ao passar o mouse */

.esl-small-news > a:hover .esl-small-news-image img {
    transform: scale(1.12);
}

.esl-small-news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 6px 8px;
}

.esl-small-news-content h3 {
    display: -webkit-box;
    margin: 0 0 4px;
    overflow: hidden;
    color: #17243b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.esl-small-news-content time {
    color: #8490a0;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
}

/* ========================================
   PRÓXIMOS EVENTOS
======================================== */

.esl-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.esl-event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 150px;
    padding: 10px 9px 9px;
    border: 1px solid #e2e6ec;
    border-radius: 3px;
    background: #fff;
    text-align: center;
}

.esl-event-date {
    align-self: flex-start;
    min-width: 45px;
    line-height: 1;
}

.esl-date-number {
    color: #14213d;
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.esl-date-month {
    margin-top: 2px;
    color: #14213d;
    font-size: 11px;
    font-weight: 800;
}

/* Título do evento sem ícone e sem cidade */

.esl-event-card h3 {
    display: -webkit-box;
    width: 100%;
    min-height: 38px;
    margin: 12px 0 10px;
    overflow: hidden;
    color: #14213d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Botão */

.esl-event-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    min-height: 27px;
    margin-top: auto;
    padding: 6px 5px;
    border-radius: 2px;
    background: #D7CC75;
    color: #14213d;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 250ms ease;
}

.esl-event-button:hover {
    background: #c7b955;
}

/* ========================================
   CARROSSEL DE BANNERS
======================================== */

.esl-banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3.8 / 1;
    height: 175px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 3px;
    background: #102b50;
    isolation: isolate;
}

.esl-banner-slide {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 700ms ease, visibility 700ms ease;
    z-index: 0;
}

.esl-banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.esl-banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Indicadores */

.esl-banner-dots {
    position: absolute;
    right: 10px;
    bottom: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.esl-banner-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 250ms ease, transform 250ms ease;
}

.esl-banner-dot.active {
    background: #D7CC75;
    transform: scale(1.25);
}

/* ========================================
   TABLETS
======================================== */

@media (max-width: 900px) {
    .esl-home-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .esl-main-news {
        min-height: 300px;
    }

    .esl-main-news-content h3 {
        font-size: 22px;
    }

    .esl-small-news-content h3 {
        font-size: 13px;
    }

    .esl-event-card h3 {
        font-size: 13px;
    }

    .esl-banner-slider {
        aspect-ratio: 4 / 1;
    }
}

/* ========================================
   CELULARES
======================================== */

@media (max-width: 600px) {
    .esl-home-content {
        padding: 14px;
        gap: 24px;
    }

    .esl-section-heading h2 {
        font-size: 16px;
    }

    .esl-happening-grid {
        grid-template-columns: 1fr;
    }

    .esl-main-news {
        min-height: 280px;
    }

    .esl-main-news-content h3 {
        font-size: 21px;
    }

    .esl-main-news-content p {
        font-size: 12px;
    }

    .esl-small-news-list {
        grid-template-rows: none;
        grid-auto-rows: minmax(75px, auto);
    }

    .esl-small-news > a {
        grid-template-columns: 34% minmax(0, 1fr);
        min-height: 75px;
    }

    .esl-small-news-image,
    .esl-small-news-image img {
        min-height: 75px;
    }

    .esl-small-news-content h3 {
        font-size: 13px;
    }

    .esl-small-news-content time {
        font-size: 9px;
    }

    .esl-events-grid {
        gap: 7px;
    }

    .esl-event-card {
        min-height: 145px;
        padding: 9px 6px 7px;
    }

    .esl-date-number {
        font-size: 22px;
    }

    .esl-date-month {
        font-size: 10px;
    }

    .esl-event-card h3 {
        font-size: 11px;
    }

    .esl-event-button {
        font-size: 9px;
    }

    .esl-banner-slider {
        aspect-ratio: 3 / 1;
        min-height: 100px;
    }
}

/* ========================================
   CELULARES ESTREITOS
======================================== */

@media (max-width: 380px) {
    .esl-events-grid {
        gap: 5px;
    }

    .esl-event-card {
        padding: 8px 4px 6px;
    }

    .esl-date-number {
        font-size: 20px;
    }

    .esl-event-card h3 {
        font-size: 10px;
    }

    .esl-event-button {
        font-size: 8px;
    }
}

/* ========================================
   ACESSIBILIDADE
======================================== */

@media (prefers-reduced-motion: reduce) {
    .esl-main-news-link > img,
    .esl-small-news-image img,
    .esl-banner-slide,
    .esl-banner-dot {
        transition: none;
    }
}



/* =========================================
   GALERIAS DE FOTOS + PROJETOS ESPORTELIFE
========================================= */

.esl-gallery-projects {
    width: 100%;
    padding: 28px 0;
    background: #f4f5f7;
    font-family: 'Montserrat', sans-serif;
}

.esl-gallery-projects *,
.esl-gallery-projects *::before,
.esl-gallery-projects *::after {
    box-sizing: border-box;
}

.esl-gallery-projects__inner {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* Títulos das áreas */

.esl-section-heading {
    min-height: 28px;
    margin-bottom: 14px;
    padding-left: 11px;
    border-left: 4px solid #dead17;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.esl-section-heading h2 {
    margin: 0;
    color: #17233f;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.esl-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1454a0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.esl-view-all:hover {
    color: #dead17;
}

/* GALERIA */

.esl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.esl-gallery-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    background: #10213c;
    border: 1px solid #d8dce3;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 8%);
    transition: transform .25s ease, box-shadow .25s ease;
}

.esl-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 7px 16px rgb(0 0 0 / 16%);
}

.esl-gallery-card__image {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: #dfe3e9;
}

.esl-gallery-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.esl-gallery-card:hover .esl-gallery-card__image img {
    transform: scale(1.06);
}

.esl-gallery-card__info {
    min-height: 54px;
    padding: 8px 9px 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.esl-gallery-card__info h3 {
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.esl-gallery-card__info span {
    color: #fff;
    font-size: 11px;
    line-height: 1.2;
}

/* PROJETOS */

.esl-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.esl-project-card {
    position: relative;
    min-width: 0;
    min-height: 170px;
    padding: 13px 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 5px;
    background: #071a36;
    transition: transform .25s ease, filter .25s ease;
}
 img.projetos{ width:100%; min-height:170px;}

.esl-project-card:hover {
    transform: translateY(-4px);
    filter: brightness(1.12);
}

.esl-project-card--mzv {
    background: #061a3a;
}

.esl-project-card--fla {
    background: #260b0d;
}

.esl-project-card--bike {
    background: #061a2e;
}

.esl-project-card__icon {
    flex: 0 0 42%;
    max-width: 75px;
    color: #087fe5;
}

.esl-project-card--fla .esl-project-card__icon {
    color: #d71927;
}

.esl-project-card--bike .esl-project-card__icon {
    color: #80c51d;
}

.esl-project-card__icon svg {
    width: 100%;
    height: auto;
    display: block;
}

.esl-project-card__content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.esl-project-card__content h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
}

.esl-project-card__content p {
    margin: 0;
    color: #d7deea;
    font-size: 10px;
    line-height: 1.5;
}

.esl-project-card__content span {
    margin-top: 12px;
    color: #dead17;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.esl-project-card__content span b {
    display: inline-block;
    transition: transform .2s ease;
}

.esl-project-card:hover .esl-project-card__content span b {
    transform: translateX(4px);
}

.esl-project-card--bike em {
    color: #80c51d;
    font-style: normal;
}

/* TABLETS */

@media (max-width: 1100px) {
    .esl-gallery-projects__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .esl-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .esl-project-card {
        min-height: 125px;
    }

    .esl-project-card__icon {
        flex-basis: 30%;
    }
}

/* CELULARES */

@media (max-width: 600px) {
    .esl-gallery-projects {
        padding: 22px 0;
    }

    .esl-gallery-projects__inner {
        width: calc(100% - 24px);
        gap: 25px;
    }

    .esl-section-heading {
        margin-bottom: 12px;
    }

    .esl-section-heading h2 {
        font-size: 16px;
    }

    .esl-view-all {
        font-size: 12px;
    }

    .esl-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .esl-gallery-card__image {
        aspect-ratio: 1.55 / 1;
    }

    .esl-gallery-card__info {
        min-height: 52px;
    }

    .esl-gallery-card__info h3 {
        font-size: 12px;
    }

    .esl-projects-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .esl-project-card {
        min-height: 112px;
        padding: 12px 18px;
    }

    .esl-project-card__icon {
        flex-basis: 26%;
        max-width: 75px;
    }

    .esl-project-card__content h3 {
        font-size: 14px;
    }

    .esl-project-card__content p {
        font-size: 11px;
    }

    .esl-project-card__content span {
        margin-top: 8px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .esl-gallery-card,
    .esl-gallery-card__image img,
    .esl-project-card,
    .esl-project-card__content span b {
        transition: none;
    }
}



/* =========================================
   RODAPÉ ESPORTELIFE
========================================= */

.esl-footer {
    position: relative;
    overflow: hidden;
    padding: 28px 0;
    color: #fff;
    background: #071a49;
    font-family: 'Montserrat', sans-serif;
}

/* Elementos decorativos ao fundo */
.esl-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .13;
    background:
        linear-gradient(135deg, transparent 49.5%, #31518d 50%, transparent 50.5%),
        linear-gradient(45deg, transparent 49.5%, #31518d 50%, transparent 50.5%);
    background-size: 180px 180px;
}

.esl-footer__inner {
    position: relative;
    z-index: 1;
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr repeat(3, minmax(115px, .8fr)) 1fr 1.65fr 42px;
    align-items: stretch;
}

/* Marca */

.esl-footer__brand {
    min-width: 0;
    padding: 0 24px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esl-footer__logo {
    display: block;
    width: 100%;
    max-width: 260px;
}

.esl-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.esl-footer__slogan {
    margin: 12px 0 0;
    padding-top: 9px;
    border-top: 1px solid rgb(255 255 255 / 15%);
    color: #e3e8f3;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .2px;
    white-space: nowrap;
}

/* Colunas de navegação */

.esl-footer__column {
    min-width: 0;
    padding: 0 18px;
    border-left: 1px solid rgb(255 255 255 / 18%);
}

.esl-footer__column h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.esl-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.esl-footer__column li {
    margin: 0 0 5px;
}

.esl-footer__column a {
    color: #e1e6f0;
    font-size: 12px;
    line-height: 1.35;
    text-decoration: none;
    transition: color .2s ease;
}

.esl-footer__column a:hover {
    color: #dead17;
}

/* Copyright */

.esl-footer__copyright {
    min-width: 0;
    padding: 14px 18px;
    border-left: 1px solid rgb(255 255 255 / 18%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esl-footer__copyright p {
    margin: 0 0 5px;
    color: #e1e6f0;
    font-size: 11px;
    line-height: 1.4;
}

.esl-footer__copyright p:last-child {
    margin-bottom: 0;
}

/* Botão voltar ao topo */

.esl-footer__top {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    align-self: start;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071a49;
    background: #dead17;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.esl-footer__top span {
    margin-top: -3px;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.esl-footer__top:hover {
    transform: translateY(-3px);
    background: #f5c92f;
}

.esl-footer__top:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* TABLETS */

@media (max-width: 1050px) {
    .esl-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        row-gap: 26px;
    }

    .esl-footer__brand {
        grid-column: 1 / -1;
        padding: 0;
    }

    .esl-footer__logo {
        max-width: 240px;
    }

    .esl-footer__column:first-of-type {
        border-left: 0;
        padding-left: 0;
    }

    .esl-footer__copyright {
        grid-column: 1 / 4;
        padding: 16px 0 0;
        border-left: 0;
        border-top: 1px solid rgb(255 255 255 / 18%);
    }

    .esl-footer__top {
        grid-column: 4;
        grid-row: 3;
        align-self: center;
    }
}

/* CELULARES */

@media (max-width: 600px) {
    .esl-footer {
        padding: 26px 0;
    }

    .esl-footer__inner {
        width: calc(100% - 32px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 12px;
    }

    .esl-footer__brand {
        grid-column: 1 / -1;
        align-items: flex-start;
    }

    .esl-footer__logo {
        max-width: 230px;
    }

    .esl-footer__slogan {
        max-width: 100%;
        font-size: 9px;
        white-space: normal;
    }

    .esl-footer__column {
        padding: 0 0 0 12px;
        border-left: 1px solid rgb(255 255 255 / 18%);
    }

    .esl-footer__column:nth-of-type(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .esl-footer__column h3 {
        font-size: 12px;
    }

    .esl-footer__column a {
        font-size: 12px;
    }

    .esl-footer__copyright {
        grid-column: 1 / 2;
        padding: 16px 0 0;
        border-top: 1px solid rgb(255 255 255 / 18%);
    }

    .esl-footer__copyright p {
        font-size: 10px;
    }

    .esl-footer__top {
        grid-column: 2;
        grid-row: auto;
        align-self: start;
        justify-self: end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .esl-footer__column a,
    .esl-footer__top {
        transition: none;
    }
}



/* =========================================
   BANNER PUBLICITÁRIO ESPORTELIFE
========================================= */

.esl-ad-area {
    width: 70%;
    padding: 10px 0;
    display: flex;
	margin:0 auto;
    justify-content: center;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.esl-ad-banner {
    position: relative;
    isolation: isolate;
    width: 80%;
    min-height: 120px;
    padding: 18px 30px;
    overflow: hidden;

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

    color: #fff;
    text-decoration: none;
    background: linear-gradient(110deg, #071a49 0%, #102b5d 55%, #071a49 100%);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 10px;
    box-shadow: 0 5px 16px rgb(7 26 73 / 12%);

    transition: box-shadow .25s ease, transform .25s ease;
}

/* Brilho decorativo de fundo */
.esl-ad-banner::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    right: 20%;
    width: 260px;
    height: 260px;
    border: 1px solid rgb(255 255 255 / 7%);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgb(255 255 255 / 2%),
        0 0 0 60px rgb(255 255 255 / 2%);
    pointer-events: none;
}

/* Filete amarelo */
.esl-ad-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #dead17;
}

/* Logo */
.esl-ad-banner__brand {
    flex: 0 1 220px;
    min-width: 0;
    display: flex;
    align-items: center;
}

.esl-ad-banner__brand img {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: 75px;
    object-fit: contain;
}

/* Texto central */
.esl-ad-banner__content {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.esl-ad-banner__eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #dead17;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.esl-ad-banner__content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 1px;

    animation: esl-ad-glow 3s ease-in-out infinite;
}

.esl-ad-banner__content p {
    margin: 7px 0 0;
    color: #dce5f5;
    font-size: 12px;
    line-height: 1.4;
}

/* Chamada para ação */
.esl-ad-banner__action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;

    color: #071a49;
    background: #dead17;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: background .25s ease;
}

.esl-ad-banner__action b {
    font-size: 18px;
    line-height: 1;
    transition: transform .25s ease;
}

/* Hover */
.esl-ad-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgb(7 26 73 / 20%);
}

.esl-ad-banner:hover .esl-ad-banner__action {
    background: #f5c92f;
}

.esl-ad-banner:hover .esl-ad-banner__action b {
    transform: translateX(4px);
}

/* Animação suave de brilho */
@keyframes esl-ad-glow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 0 rgb(222 173 23 / 0%);
    }

    50% {
        opacity: .78;
        text-shadow: 0 0 12px rgb(222 173 23 / 35%);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .esl-ad-banner {
        width: 90%;
        padding: 16px 24px;
        gap: 18px;
    }

    .esl-ad-banner__brand {
        flex-basis: 160px;
    }

    .esl-ad-banner__brand img {
        max-width: 160px;
    }

    .esl-ad-banner__action {
        padding: 10px 12px;
    }
}

/* Celular */
@media (max-width: 600px) {
    .esl-ad-area {
        padding: 12px 0;
    }

    .esl-ad-banner {
        width: calc(100% - 28px);
        min-height: 120px;
        padding: 16px 18px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .esl-ad-banner__brand {
        flex: 0 1 125px;
    }

    .esl-ad-banner__brand img {
        max-width: 125px;
        max-height: 45px;
    }

    .esl-ad-banner__content {
        flex: 1 1 150px;
        text-align: left;
    }

    .esl-ad-banner__eyebrow {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .esl-ad-banner__content h2 {
        font-size: 22px;
    }

    .esl-ad-banner__content p {
        font-size: 10px;
    }

    .esl-ad-banner__action {
        padding: 8px 12px;
        font-size: 10px;
    }
}

/* Respeita a preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
    .esl-ad-banner,
    .esl-ad-banner__action,
    .esl-ad-banner__action b {
        transition: none;
    }

    .esl-ad-banner__content h2 {
        animation: none;
    }
}


/* =========================================
   ANIMAÇÃO DE ENTRADA AO ROLAR A PÁGINA
========================================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
    will-change: opacity, transform;
}

/* Estado visível */
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Acessibilidade: respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}


/* =========================================
   BOTÃO VOLTAR AO TOPO — ESPORTELIFE
========================================= */

.esl-footer__top {
    position: absolute;
    top: 28px;
    right: 0;

    width: 46px;
    height: 46px;

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

    background: #ffcf24;
    color: #071b49;

    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    cursor: pointer;
    z-index: 5;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);

    transition:
        background-color 250ms ease,
        color 250ms ease,
        transform 300ms ease,
        box-shadow 300ms ease;
}

/* Ícone de seta */
.esl-footer__top svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 300ms ease;
}

/* Efeito ao passar o mouse */
.esl-footer__top:hover {
    background: #ffffff;
    color: #071b49;

    transform: translateY(-4px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.esl-footer__top:hover svg {
    transform: translateY(-2px);
}

/* Efeito ao clicar */
.esl-footer__top:active {
    transform: translateY(-1px) scale(0.94);
}

/* Acessibilidade ao navegar pelo teclado */
.esl-footer__top:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .esl-footer__top {
        width: 42px;
        height: 42px;
        top: 20px;
        right: 16px;
    }

    .esl-footer__top svg {
        width: 20px;
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .esl-footer__top,
    .esl-footer__top svg {
        transition: none;
    }
}


/* =========================================================
   PÁGINA DE LEITURA
========================================================= */

.esl-read-page {
    background: #fff;
    padding: 35px 0 70px;
}

.esl-read-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 45px;

    align-items: start;
}


/* =========================================================
   ARTIGO
========================================================= */

.esl-read-article {
    min-width: 0;
}

.esl-read-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 18px;

    margin-bottom: 14px;

    font-size: 12px;
    color: #657080;
}

.esl-read-category {
    display: inline-flex;
    align-items: center;

    min-height: 24px;
    padding: 4px 9px;

    background: var(--category-color, #d4c97a);

    color: #071846;

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

    text-transform: uppercase;

    border-radius: 2px;
}

.esl-read-city {
    position: relative;
    padding-left: 15px;
}

.esl-read-city::before {
    content: "●";

    position: absolute;
    left: 0;
    top: 50%;

    transform: translateY(-50%);

    color: #071846;
    font-size: 7px;
}


/* =========================================================
   TÍTULO
========================================================= */

.esl-read-title {
    margin: 0;

    max-width: 950px;

    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;

    letter-spacing: -1.8px;

    color: #06164c;

    font-weight: 800;
}

.esl-read-subtitle {
    max-width: 900px;

    margin: 17px 0 0;

    font-size: 18px;
    line-height: 1.45;

    color: #566174;
}


/* =========================================================
   COMPARTILHAR
========================================================= */

.esl-read-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 7px;

    margin: 18px 0 14px;

    font-size: 11px;
    color: #657080;
}

.esl-share-button {
    width: 27px;
    height: 27px;

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

    border: 0;
    border-radius: 50%;

    text-decoration: none;

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

    cursor: pointer;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.esl-share-button:hover {
    transform: translateY(-2px);
    opacity: .85;
}

.esl-share-facebook {
    background: #0866ff;
    color: #fff;
}

.esl-share-whatsapp {
    background: #20c863;
    color: #fff;
}

.esl-share-x {
    background: #050505;
    color: #fff;
}

.esl-share-copy {
    background: #edf0f5;
    color: #071846;
}


/* =========================================================
   FOTO PRINCIPAL
========================================================= */

.esl-read-main-image {
    margin: 0 0 28px;
}

.esl-read-main-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 650px;

    object-fit: cover;

    border-radius: 5px;
}

.esl-read-main-image figcaption {
    margin-top: 7px;

    font-size: 10px;
    line-height: 1.4;

    color: #667080;
}


/* =========================================================
   CONTEÚDO DA NOTÍCIA
========================================================= */

.esl-read-content {
    color: #394252;

    font-size: 16px;
    line-height: 1.68;
}

.esl-read-content p {
    margin: 0 0 18px;
}

.esl-read-content h2,
.esl-read-content h3,
.esl-read-content h4 {
    color: #06164c;

    line-height: 1.2;

    margin: 32px 0 14px;
}

.esl-read-content h2 {
    font-size: 27px;
}

.esl-read-content h3 {
    font-size: 22px;
}

.esl-read-content img {
    max-width: 100%;
    height: auto;

    margin: 20px 0;

    border-radius: 4px;
}

.esl-read-content a {
    color: #0058c9;
}

.esl-read-content blockquote {
    margin: 25px 0;

    padding: 5px 0 5px 20px;

    border-left: 4px solid #d4c97a;

    color: #06164c;

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


/* =========================================================
   AUTOR / FONTE
========================================================= */

.esl-read-source {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 25px;

    margin-top: 35px;
    padding-top: 20px;

    border-top: 1px solid #e7e9ed;

    color: #677080;

    font-size: 12px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.esl-read-sidebar {
    min-width: 0;
}

.esl-read-ad {
    margin-bottom: 35px;
}

.esl-read-ad img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 4px;
}


/* =========================================================
   TÍTULO SIDEBAR
========================================================= */

.esl-sidebar-section {
    margin-bottom: 38px;
}

.esl-sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 15px;

    border-bottom: 1px solid #e6e9ef;
}

.esl-sidebar-title h2 {
    position: relative;

    margin: 0;
    padding: 0 0 10px 13px;

    color: #06164c;

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

    text-transform: uppercase;
}

.esl-sidebar-title h2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 1px;

    width: 4px;
    height: 20px;

    background: #d4c97a;
}

.esl-sidebar-title a {
    color: #005ac8;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   MAIS LIDAS
========================================================= */

.esl-most-read {
    list-style: none;

    padding: 0;
    margin: 0;
}

.esl-most-read li {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 10px;

    align-items: start;

    padding: 8px 0;
}

.esl-most-read-number {
    color: #d4c97a;

    font-size: 22px;
    line-height: 1;

    font-weight: 800;
}

.esl-most-read a {
    color: #071846;

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

    font-weight: 500;

    text-decoration: none;
}

.esl-most-read a:hover {
    text-decoration: underline;
}


/* =========================================================
   RELACIONADAS
========================================================= */

.esl-related-card {
    display: grid;

    grid-template-columns: 105px 1fr;

    gap: 12px;

    padding: 10px 0;

    border-bottom: 1px solid #e8eaf0;
}

.esl-related-image {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 3px;

    background: #eef0f3;
}

.esl-related-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .3s ease;
}

.esl-related-card:hover
.esl-related-image img {
    transform: scale(1.05);
}

.esl-related-category {
    display: inline-block;

    margin-bottom: 5px;

    color: #071846;
    background: #d4c97a;

    padding: 3px 6px;

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

    text-transform: uppercase;
}

.esl-related-content h3 {
    margin: 0;

    font-size: 13px;
    line-height: 1.25;
}

.esl-related-content h3 a {
    color: #071846;

    text-decoration: none;
}

.esl-related-content h3 a:hover {
    text-decoration: underline;
}


/* =========================================================
   NOT FOUND
========================================================= */

.esl-not-found {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;
}

.esl-not-found h1 {
    color: #06164c;

    font-size: 36px;

    margin-bottom: 10px;
}

.esl-not-found p {
    color: #677080;

    margin-bottom: 25px;
}

.esl-not-found a {
    display: inline-flex;

    padding: 12px 22px;

    background: #06164c;

    color: #fff;

    text-decoration: none;

    border-radius: 4px;

    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .esl-read-container {
        grid-template-columns: 1fr;
    }

    .esl-read-sidebar {
        display: grid;

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

        gap: 30px;
    }

    .esl-read-ad {
        margin: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .esl-read-page {
        padding-top: 22px;
    }

    .esl-read-container {
        width: min(
            100% - 28px,
            1280px
        );

        gap: 35px;
    }

    .esl-read-title {
        font-size: 34px;

        letter-spacing: -1px;
    }

    .esl-read-subtitle {
        font-size: 16px;
    }

    .esl-read-share {
        justify-content: flex-start;
    }

    .esl-read-content {
        font-size: 15px;
    }

    .esl-read-sidebar {
        display: block;
    }

    .esl-sidebar-section,
    .esl-read-ad {
        margin-bottom: 35px;
    }

}
