/* assets/css/style.css */

/* RESET BÃSICO */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: #f4f7fa;
    color: var(--color-text);
    line-height: 1.5;
}

/* VARIÃVEIS */
:root {
    --color-primary: #00489A;
    --color-orange: #F5A623;
    --color-orange-dark: #E8500A;
    --color-dark: #0D1B2A;
    --color-light-bg: #F4F7FA;
    --color-text: #1A1A2E;
    --color-white: #FFFFFF;
    --color-badge-green: #28A745;
    --color-badge-yellow: #FFC107;
    --color-badge-gray: #6C757D;
    --color-badge-orange: #FF6B00;

    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --header-height: 80px;
    --max-width: 1200px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e1e5ee;
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

/* CONTAINERS E GRID */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--color-dark);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 70px;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 48px;
    display: block;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    position: relative;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 0;
}
.main-nav a.active_classificados {
    position: relative;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 0;
    font-weight: 800;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-orange-dark));
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* BOTÃ•ES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-orange), var(--color-orange-dark));
    color: var(--color-white);
    box-shadow: 0 6px 14px rgba(232,80,10,0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(232,80,10,0.45);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* BOTÃƒO ASSINE JÃ */
.btn-assine {
    padding: 8px;
    font-size: 13px;
}

/* MENU MOBILE */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* HERO */
.hero {
    position: relative;
    margin-top: var(--header-height);
    min-height: 460px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/bg.jpg') center/cover no-repeat;
    filter: brightness(0.45);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    padding: 40px 0;
}

.hero-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* STATISTICS */
.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 32px;
}

.stats-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 140px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
}

.stats-text-title {
    font-family: var(--font-title);
    font-size: 20px;
    margin-bottom: 12px;
}

.stats-text-body {
    font-size: 14px;
    opacity: 0.9;
}

/* SEÃ‡ÃƒO DE VÃDEOS / ÃšLTIMOS TORNEIOS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    cursor: pointer;
    transform: translateY(0);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.video-card-body {
    padding: 10px 12px 14px;
}

.video-card-title {
    font-family: var(--font-title);
    font-size: 15px;
    margin-bottom: 4px;
}

.video-card-meta {
    font-size: 12px;
    opacity: 0.85;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* PRÃ“XIMOS TORNEIOS - HOME */
.next-tournaments {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
}

.next-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.next-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    background: var(--color-white);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    align-items: center;
}

.next-date-box {
    background: linear-gradient(180deg, var(--color-orange), var(--color-orange-dark));
    color: var(--color-white);
    border-radius: 10px;
    text-align: center;
    padding: 8px 6px;
    font-family: var(--font-title);
}

.next-date-day {
    font-size: 18px;
    font-weight: 700;
}

.next-date-month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.next-content-title {
    font-family: var(--font-title);
    font-size: 15px;
    margin-bottom: 4px;
}

.next-content-meta {
    font-size: 13px;
    color: #555;
}

.next-badges {
    margin-top: 4px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* SIDEBAR HOME */
.next-sidebar {
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 18px;
    padding: 20px 18px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.next-sidebar-logo img {
    max-width: 140px;
    margin-bottom: 16px;
}

.next-sidebar-title {
    font-family: var(--font-title);
    font-size: 18px;
    margin-bottom: 8px;
}

.next-sidebar-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

/* BADGES */
.badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.badge-green {
    background: var(--color-badge-green);
    color: var(--color-white);
}

.badge-yellow {
    background: var(--color-badge-yellow);
    color: #212529;
}

.badge-gray {
    background: var(--color-badge-gray);
    color: var(--color-white);
}

.badge-orange {
    background: var(--color-badge-orange);
    color: var(--color-white);
}

/* BADGE PRÃ“XIMO TORNEIO */
.badge-next {
    background: var(--color-primary);
    color: #fff;
}

/* SEPARADOR DE MÃŠS */
.month-separator {
    margin: 32px 0 12px;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-title);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* CARDS DE TORNEIOS - /torneios */
.tournaments-filters {
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.search-input {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #d4d8e3;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-input input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,72,154,0.16);
}

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

.tournament-card {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transform: translateY(0);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

.tournament-image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.tournament-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo VOP sobre a imagem */
.tournament-logo-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 70px;
    height: auto;
    z-index: 2;
}

/* Badge transmissÃ£o e prÃ³ximo */
.tournament-top-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.tournament-body {
    padding: 12px 14px 48px;
    position: relative;
    flex: 1;
}

.tournament-title {
    font-family: var(--font-title);
    font-size: 15px;
    margin-bottom: 6px;
}

.tournament-meta {
    font-size: 13px;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.tournament-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tournament-meta i {
    font-style: normal;
    color: var(--color-primary);
}

/* BotÃ£o inscreva-se no canto inferior direito */
.tournament-footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.tournament-footer .btn {
    padding: 6px 12px;
    font-size: 11px;
}

/* ESTADO VAZIO */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* FOOTER */
.site-footer {
    background: #060a12;
    color: var(--color-white);
    padding: 40px 0 20px;
    
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-title {
    font-family: var(--font-title);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-sponsors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-sponsors img {
    max-height: 93px;
    max-width: 360px;
    object-fit: contain;
}

.footer-links,
.footer-contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.footer-links li a {
    color: #dde1f0;
    text-decoration: none;
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--color-orange);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    font-size: 12px;
    color: #a7b0c8;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ANIMAÃ‡Ã•ES DE ENTRADA */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(6,10,18,0.98);
        padding: 16px;
        gap: 12px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        color: var(--color-white);
    }

    .burger {
        display: flex;
    }

    .next-tournaments {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tournaments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 380px;
    }

    .hero-title {
        font-size: 26px;
    }

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

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

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

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



/* =============================================
   HOME â€” EXTRAS
============================================= */

/* Hero eyebrow */
.hero-eyebrow {
    font-family: var(--font-title);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-orange);
    margin-bottom: 10px;
}

/* Badge prÃ³xima transmissÃ£o no hero */
.hero-next-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
}

.hero-next-label {
    color: #8ea4ff;
    font-weight: 600;
}

.hero-next-name {
    color: #fff;
    font-weight: 700;
}

.hero-next-date {
    color: var(--color-orange);
    font-weight: 600;
}

/* Hero vÃ­deo placeholder */
.hero-video-placeholder {
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.hero-video-placeholder-inner {
    text-align: center;
    padding: 20px;
    color: #8ea4ff;
    font-size: 0.85rem;
}


/* Ãšltima transmissÃ£o na Home */
.last-video-wrapper {
    margin-top: 12px;
    margin-bottom: 24px;
}

.last-video-inner {
    max-width: 800px;       /* largura mÃ¡xima desejada */
    margin: 0 auto;         /* centraliza dentro da .container */
}

/* MantÃ©m proporÃ§Ã£o 16:9 (1080p = 1920x1080) */
.last-video-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;    /* 9 / 16 = 0.5625 â†’ 56.25% */
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.last-video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}






/* SeÃ§Ã£o de vÃ­deos em destaque */
.video-highlights {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.video-highlight-main .video-thumb-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.video-highlight-main .video-thumb-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-thumb-wrapper:hover .video-play-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.video-highlight-meta {
    margin-top: 12px;
}

.video-highlight-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.video-highlight-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-thumb-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.video-thumb-small img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.video-thumb-small:hover img {
    transform: scale(1.04);
}

.video-thumb-label {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-thumb-small:hover .video-thumb-label {
    opacity: 1;
}

.video-thumb-cta {
    background: var(--color-dark);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: #c0d4ff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.video-thumb-cta:hover {
    background: #1a2f4a;
    text-decoration: none;
    color: #fff;
}

/* Next tournaments item hover */
.next-tournament-item.is-next {
    border-left: 3px solid var(--color-orange);
}

/* Sidebar de prÃ³ximos torneios */
.next-sidebar {
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    
    top: 100px;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c7a99;
}

/* Responsivo vÃ­deos */
@media (max-width: 768px) {
    .video-highlights {
        grid-template-columns: 1fr;
    }

    .video-highlight-side {
        flex-direction: row;
        overflow-x: auto;
    }

    .video-thumb-small {
        min-width: 180px;
    }
}






/* ================================================
   PRÃ“XIMOS TORNEIOS â€” CARDS COM IMAGEM
================================================ */
.next-tournaments-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.tournament-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CARD */
.tournament-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    border: 2px solid transparent;
}

.tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}

.tournament-card--next {
    border-color: var(--color-primary, #3a5bd9);
}

/* IMAGEM */
.tournament-card__image {
    position: relative;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

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

.tournament-card:hover .tournament-card__image img {
    transform: scale(1.04);
}

/* Overlay gradiente */
.tournament-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.18) 0%,
        rgba(0,0,0,0.0) 60%
    );
    pointer-events: none;
}

/* Badge de data sobre a imagem */
.tournament-card__date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(20, 30, 60, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    color: #fff;
    min-width: 80px;
    border: 1px solid rgba(255,255,255,0.15);
}

.tournament-card__date-month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8ea4ff;
    margin-bottom: 2px;
}

.tournament-card__date-days {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 2px;
}

.tournament-card__date-weekdays {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c0d4ff;
}

/* CORPO DO CARD */
.tournament-card__body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.tournament-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text, #1a2340);
    line-height: 1.3;
    margin: 0;
}

.tournament-card__location {
    font-size: 0.85rem;
    color: #6c7a99;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tournament-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.tournament-card__extras {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: #6c7a99;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #f0f3fa;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .next-tournaments-cards {
        grid-template-columns: 1fr;
    }
    .next-sidebar {
        order: -1;
    }
}

@media (max-width: 620px) {
    .tournament-card {
        grid-template-columns: 1fr;
    }
    .tournament-card__image {
        min-height: 180px;
        height: 180px;
    }
    .tournament-card__date-badge {
        top: 12px;
        left: 12px;
    }
}


/* BotÃ£o de inscriÃ§Ã£o no card de torneio */
.tournament-card__cta {
    margin-top: 14px;
}

.tournament-card__btn-inscricao {
    display: inline-block;
    background: var(--color-orange, #f97316);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.tournament-card__btn-inscricao:hover {
    background: #e06010;
    transform: translateY(-1px);
}



/* torneios novo */
/* ================================================
   TORNEIOS.PHP â€” CARDS VERTICAIS COM IMAGEM
================================================ */

/* Grid de 3 colunas fixas */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CARD */
.tcard {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}

.tcard--next {
    border-color: var(--color-primary, #3a5bd9);
}

/* IMAGEM â€” proporÃ§Ã£o 9:16 (vertical) */
.tcard__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 horizontal â€” muda para 177.78% se quiser 9:16 puro */
    overflow: hidden;
    background: #1a2340;
}

.tcard__image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tcard:hover .tcard__image-wrap img {
    transform: scale(1.04);
}

/* Overlay gradiente inferior para legibilidade */
.tcard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0) 50%,
        rgba(0,0,0,0.45) 100%
    );
    pointer-events: none;
}

/* Logo VOP pequena â€” canto superior direito */
.tcard__vop-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid rgba(255,255,255,0.25);
}

.tcard__vop-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: static !important;
    transform: none !important;
}

/* Badge de transmissÃ£o â€” canto superior esquerdo */
.tcard__trans-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Badge de data â€” igual Ã  home */
.tcard__date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(20, 30, 60, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 8px 12px;
    text-align: center;
    color: #fff;
    min-width: 72px;
    border: 1px solid rgba(255,255,255,0.15);
}

.tcard__date-month {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8ea4ff;
    margin-bottom: 2px;
}

.tcard__date-days {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 2px;
}

.tcard__date-weekdays {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c0d4ff;
}

/* CORPO */
.tcard__body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.tcard__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-text, #1a2340);
    line-height: 1.3;
    margin: 0;
}

.tcard__location {
    font-size: 0.82rem;
    color: #6c7a99;
}

.tcard__date-text {
    font-size: 0.82rem;
    color: #6c7a99;
}

.tcard__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tcard__sport {
    font-size: 0.8rem;
    color: #6c7a99;
    margin-top: 2px;
}

/* BotÃ£o INSCREVA-SE AQUI */
.tcard__btn-inscricao {
    display: block;
    text-align: center;
    margin-top: auto;
    padding-top: 12px;
    background: var(--color-orange, #f97316);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: 12px;
}

.tcard__btn-inscricao:hover {
    background: #e06010;
    transform: translateY(-1px);
}

.tcard__btn-inscricao--disabled {
    background: #d0d7e8;
    color: #8896b3;
    cursor: default;
}

.tcard__btn-inscricao--disabled:hover {
    background: #d0d7e8;
    transform: none;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .tournaments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tournaments-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================
   SEÃ‡ÃƒO DE BUSCA â€” TORNEIOS
================================================ */
.search-section {
    background: linear-gradient(135deg, #1a2340 0%, #0f1628 100%);
    padding: 5px 0 20px;
    border-bottom: 1px solid rgba(142, 164, 255, 0.15);
    
}

.search-form {
    margin-bottom: 14px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(142, 164, 255, 0.25);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    max-width: 680px;
}

.search-input-wrapper:focus-within {
    border-color: rgba(142, 164, 255, 0.7);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(58, 91, 217, 0.18);
}

.search-icon {
    width: 18px;
    height: 18px;
    color: #8ea4ff;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    padding: 6px 0;
    min-width: 0;
}

.search-input::placeholder {
    color: rgba(142, 164, 255, 0.55);
}

.search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #8ea4ff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.search-clear:hover {
    background: rgba(255, 80, 80, 0.18);
    color: #ff6b6b;
}

.search-clear svg {
    width: 14px;
    height: 14px;
}

.search-btn {
    background: linear-gradient(135deg, #3a5bd9, #2a45b8);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.search-btn:hover {
    background: linear-gradient(135deg, #4a6be9, #3a55c8);
    transform: translateY(-1px);
}

.search-results-info {
    font-size: 0.82rem;
    color: rgba(142, 164, 255, 0.7);
    padding-left: 4px;
}

.search-results-count {
    font-weight: 700;
    color: #8ea4ff;
    font-size: 0.9rem;
}

.search-results-info em {
    font-style: normal;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 560px) {
    .search-input-wrapper {
        border-radius: 14px;
        padding: 8px 8px 8px 16px;
    }
    .search-btn {
        padding: 8px 16px;
        font-size: 0.76rem;
    }
}



/* ================================================
   BUSCA â€” TORNEIOS.PHP
================================================ */

.search-section {
    background: linear-gradient(135deg, #1a2340 0%, #0f1628 100%);
    padding: 28px 0 20px;
    border-bottom: 1px solid rgba(142, 164, 255, 0.15);
}

.search-form {
    margin-bottom: 14px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(142, 164, 255, 0.25);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    max-width: 680px;
}

.search-input-wrapper:focus-within {
    border-color: rgba(142, 164, 255, 0.7);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(58, 91, 217, 0.18);
}

.search-icon {
    width: 18px;
    height: 18px;
    color: #8ea4ff;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    padding: 6px 0;
    min-width: 0;
}

.search-input::placeholder {
    color: rgba(142, 164, 255, 0.55);
}

.search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #8ea4ff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.search-clear:hover {
    background: rgba(255, 80, 80, 0.18);
    color: #ff6b6b;
}

.search-clear svg {
    width: 14px;
    height: 14px;
}

.search-btn {
    background: linear-gradient(135deg, #3a5bd9, #2a45b8);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.search-btn:hover {
    background: linear-gradient(135deg, #4a6be9, #3a55c8);
    transform: translateY(-1px);
}

.search-results-info {
    font-size: 0.82rem;
    color: rgba(142, 164, 255, 0.7);
    padding-left: 4px;
}

.search-results-count {
    font-weight: 700;
    color: #8ea4ff;
    font-size: 0.9rem;
}

.search-results-info em {
    font-style: normal;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 560px) {
    .search-input-wrapper {
        border-radius: 14px;
        padding: 8px 8px 8px 16px;
    }
    .search-btn {
        padding: 8px 16px;
        font-size: 0.76rem;
    }
}


/* ================================================
   FOOTER â€” CONTATO COM ÃCONES + REDES SOCIAIS
================================================ */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #dde1f0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-contact-link {
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: #8ea4ff;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #8ea4ff;
}

.footer-contact-icon--youtube {
    color: #ff4444;
}

/* BotÃµes de redes sociais */
.footer-socials-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.18s, opacity 0.18s;
    border: 1.5px solid transparent;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.footer-social-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Instagram â€” gradiente roxo/rosa */
.footer-social-btn--instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    border-color: transparent;
}

/* TikTok â€” preto com borda sutil */
.footer-social-btn--tiktok {
    background: #010101;
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}


/* ================================================
   FOOTER â€” BOTÃƒO YOUTUBE (igual ao Instagram e TikTok)
================================================ */
.footer-social-btn--youtube {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.12);
    border: 1.5px solid rgba(255, 0, 0, 0.35);
    color: #ff4444;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.footer-social-btn--youtube:hover {
    background: rgba(255, 0, 0, 0.22);
    border-color: #ff4444;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-btn--youtube svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}



/* ================================================
   PATROCINADORES HOME â€” GRID 4 COLUNAS
================================================ */
.sponsors-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sponsor-home-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #e8edf5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    min-height: 160px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sponsor-home-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: #c8d4f0;
}

.sponsor-home-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sponsor-home-card img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.2s ease;
}

.sponsor-home-card:hover img {
    filter: grayscale(0%);
}

/* Responsivo */
@media (max-width: 1024px) {
    .sponsors-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .sponsors-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .sponsors-home-grid {
        grid-template-columns: 1fr;
    }
}





/* ================================================
   ESTATÃSTICAS HOME â€” CARDS MODERNOS
================================================ */
.stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

/* Card base */
.stat-modern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(142, 164, 255, 0.15);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
}

.stat-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a5bd9, #8ea4ff);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.stat-modern-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(142, 164, 255, 0.3);
}

.stat-modern-card:hover::before {
    opacity: 1;
}

/* Ãcone */
.stat-modern-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(58, 91, 217, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ea4ff;
    flex-shrink: 0;
}

.stat-modern-icon svg {
    width: 22px;
    height: 22px;
}

.stat-modern-icon--orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.stat-modern-icon--green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

/* NÃºmero */
.stat-modern-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Label */
.stat-modern-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #8ea4ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: -6px;
}

/* Barra de progresso */
.stat-modern-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 4px;
}

.stat-modern-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3a5bd9, #8ea4ff);
    border-radius: 50px;
    transition: width 1.2s ease;
}

.stat-modern-bar-fill--orange {
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.stat-modern-bar-fill--green {
    background: linear-gradient(90deg, #16a34a, #4ade80);
}

/* Card descritivo (4Âº card) */
.stat-modern-card--desc {
    background: rgba(58, 91, 217, 0.1);
    border-color: rgba(58, 91, 217, 0.25);
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.stat-modern-card--desc::before {
    background: linear-gradient(90deg, #3a5bd9, #f97316);
}

.stat-modern-desc-logo img {
    max-width: 100px;
    opacity: 0.9;
}

.stat-modern-desc-text {
    font-size: 0.82rem;
    color: #c6d7ff;
    line-height: 1.6;
    margin: 0;
}

.stat-modern-desc-text strong {
    color: #fff;
    font-weight: 700;
}

.stat-modern-desc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 4px;
}

.stat-modern-desc-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Responsivo */
@media (max-width: 1024px) {
    .stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .stats-modern {
        grid-template-columns: 1fr;
    }
    .stat-modern-number {
        font-size: 1.8rem;
    }
}




/* ========================================================
   ESTILOS PARA CARDS DE ESTATÃSTICAS MODERNOS (index.php)
   ======================================================== */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* 4 colunas em telas grandes, responsivo */
    gap: 20px;
    margin-top: 40px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.08); /* Fundo semi-transparente escuro */
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-modern {
    width: 50px;
    height: 50px;
    background: rgba(142, 164, 255, 0.15); /* Fundo sutil para o Ã­cone */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #8ea4ff; /* Cor primÃ¡ria do seu tema */
    flex-shrink: 0; /* Garante que o Ã­cone nÃ£o encolha */
}

.stat-icon-modern svg {
    width: 24px;
    height: 24px;
    stroke: currentColor; /* Usa a cor do pai */
}

.stat-content-modern {
    flex-grow: 1; /* Permite que o conteÃºdo ocupe o espaÃ§o restante */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label-modern {
    font-size: 0.95rem;
    color: #c0d4ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-card-modern.stat-description-modern {
    background: linear-gradient(135deg, rgba(142, 164, 255, 0.15), rgba(100, 120, 200, 0.15));
    border: 1px solid rgba(142, 164, 255, 0.2);
    padding: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-modern.stat-description-modern p {
    color: #e0eaff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.stat-card-modern.stat-description-modern strong {
    color: #fff;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    .stats-grid-modern {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .stat-card-modern {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
    .stat-icon-modern {
        margin-right: 15px;
        margin-bottom: 0;
    }
    .stat-number-modern {
        font-size: 2rem;
    }
    .stat-label-modern {
        font-size: 0.85rem;
    }
    .stat-card-modern.stat-description-modern {
        text-align: left;
    }
}






/* ------------------------------ */
/* AULAS.PHP. */

/* Estilos especÃ­ficos para a pÃ¡gina de aulas */
.aulas-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.aulas-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.aulas-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.container-aulas {
    padding: 0 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.aulas-header {
    margin-bottom: 30px;
}

.aulas-title {
    font-size:1.8rem;
    font-weight:700;
    margin-bottom:10px;
    color:#111827;
}

.aulas-subtitle {
    font-size:0.98rem;
    color:#4b5563;
    max-width:720px;
}

/* Campo de pesquisa de professores */
.professor-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.professor-search-input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Aumenta padding esquerdo para o Ã­cone */
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.professor-search-input:focus {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    outline: none;
}

.professor-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}


.professors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.professor-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    cursor: pointer; /* Indica que o card Ã© clicÃ¡vel */
    border: 2px solid transparent; /* Borda para seleÃ§Ã£o */
}
.professor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.professor-card.selected {
    border-color: #007bff; /* Cor da borda quando selecionado */
    box-shadow: 0 18px 45px rgba(0, 123, 255, 0.25);
}
.professor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #f1f5f9;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.professor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.professor-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}
.professor-bio {
    font-size: 0.92rem;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}
.professor-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.professor-tag {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    background-color: #eff6ff;
    color: #1d4ed8;
    font-weight: 500;
}

.no-results-message, .no-professors-message, .no-schedules-message {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    padding: 20px 0;
}

/* BotÃ£o "Todos os horÃ¡rios disponÃ­veis" */
.aulas-actions {
    text-align: center;
    margin-bottom: 30px;
}
.btn-all-schedules {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid #111827;
    background-color: #fff;
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.btn-all-schedules:hover {
    background-color: #111827;
    color: #fff;
    box-shadow: 0 8px 20px rgba(15,23,42,0.25);
    transform: translateY(-1px);
}

.schedule-section {
    margin-top: 20px;
    margin-bottom: 50px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.schedule-day-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.09);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-day-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1d4ed8;
}

.schedule-day-header-line {
    height: 1px;
    background: linear-gradient(to right, #e5e7eb, #f9fafb);
    margin: 4px 0 4px;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #e5e7eb;
}
.schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

.schedule-time {
    min-width: 58px;
    padding: 6px 10px;
    border-radius: 10px;
    background-color: #eff6ff;
    color: #111827;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.schedule-details {
    flex: 1;
    font-size: 0.86rem;
    color: #4b5563;
}

.schedule-category {
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.schedule-location {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Contato do professor selecionado */
.selected-professor-contact {
    display: none; /* Oculto por padrÃ£o */
    margin: 0 auto 40px;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.selected-professor-contact-text {
    font-size: 0.95rem;
    color: #111827;
}

.selected-professor-name {
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.1s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-contact svg {
    width: 16px;
    height: 16px;
}

.btn-whatsapp {
    background-color: #22c55e;
    color: #fff;
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.35);
}
.btn-whatsapp:hover {
    background-color: #16a34a;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.4);
    transform: translateY(-1px);
}

.btn-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(219, 39, 119, 0.45);
}
.btn-instagram:hover {
    box-shadow: 0 10px 24px rgba(219, 39, 119, 0.55);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .aulas-hero {
        padding: 60px 16px;
    }
    .aulas-hero h1 {
        font-size: 2.4rem;
    }
    .aulas-hero p {
        font-size: 1.05rem;
    }
    .professor-search-input {
        font-size: 0.9rem;
        padding: 10px 15px 10px 40px;
    }
    .professor-search-icon {
        font-size: 1rem;
        left: 12px;
    }
}

/* ========================= */
/* HERO TORNEIOS */
/* Estilos para a seÃ§Ã£o hero da pÃ¡gina de torneios (adicionar ao style.css) */
.tournaments-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 0px;
}
.tournaments-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.tournaments-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tournaments-hero {
        padding: 60px 16px;
    }
    .tournaments-hero h1 {
        font-size: 2.4rem;
    }
    .tournaments-hero p {
        font-size: 1.05rem;
    }
}


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

/* Estilos para a seÃ§Ã£o hero da pÃ¡gina de patrocinadores (adicionar ao style.css) */
.sponsors-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    
}
.sponsors-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.sponsors-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sponsors-hero {
        padding: 60px 16px;
    }
    .sponsors-hero h1 {
        font-size: 2.4rem;
    }
    .sponsors-hero p {
        font-size: 1.05rem;
    }
}


/* PAGINA SOBRE.php*/

/* Estilos para a seÃ§Ã£o hero da pÃ¡gina Sobre */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilos para a seÃ§Ã£o de estatÃ­sticas (Vale o Play em nÃºmeros) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 4 colunas, responsivo */
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background-color: #2a3040; /* Fundo mais escuro para contraste */
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.8rem; /* NÃºmeros maiores */
    font-weight: 800;
    color: var(--color-primary); /* Cor primÃ¡ria do seu tema */
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 123, 255, 0.4); /* Sombra para destaque */
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: #b0b8d0; /* Cor de texto mais clara para o label */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 16px;
    }
    .about-hero h1 {
        font-size: 2.4rem;
    }
    .about-hero p {
        font-size: 1.05rem;
    }
    .stats-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
        gap: 20px;
    }
    .stat-number {
        font-size: 2.8rem; /* Ajusta tamanho do nÃºmero */
    }
    .stat-label {
        font-size: 0.9rem;
    }
}

/* CONTATO.PHP */

/* Estilos para a seÃ§Ã£o hero da pÃ¡gina de contato (adicionar ao style.css) */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.contact-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 16px;
    }
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    .contact-hero p {
        font-size: 1.05rem;
    }
}

/* ConteÃºdo existente do style.css */

/* ================================================
   PATROCINADORES HOME â€” GRID 4 COLUNAS
================================================ */
.sponsors-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sponsor-home-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #e8edf5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    min-height: 160px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sponsor-home-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: #c8d4f0;
}

.sponsor-home-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sponsor-home-card img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.2s ease;
}

.sponsor-home-card:hover img {
    filter: grayscale(0%);
}

/* Responsivo */
@media (max-width: 1024px) {
    .sponsors-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .sponsors-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .sponsors-home-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   ESTATÃSTICAS HOME â€” CARDS MODERNOS
================================================ */
.stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

/* Card base */
.stat-modern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(142, 164, 255, 0.15);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
}

.stat-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a5bd9, #8ea4ff);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.stat-modern-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(142, 164, 255, 0.3);
}

.stat-modern-card:hover::before {
    opacity: 1;
}

/* Ãcone */
.stat-modern-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(58, 91, 217, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ea4ff;
    flex-shrink: 0;
}

.stat-modern-icon svg {
    width: 22px;
    height: 22px;
}

.stat-modern-icon--orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.stat-modern-icon--green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

/* NÃºmero */
.stat-modern-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Label */
.stat-modern-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #8ea4ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: -6px;
}

/* Barra de progresso */
.stat-modern-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 4px;
}

.stat-modern-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3a5bd9, #8ea4ff);
    border-radius: 50px;
    transition: width 1.2s ease;
}

.stat-modern-bar-fill--orange {
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.stat-modern-bar-fill--green {
    background: linear-gradient(90deg, #16a34a, #4ade80);
}

/* Card descritivo (4Âº card) */
.stat-modern-card--desc {
    background: rgba(58, 91, 217, 0.1);
    border-color: rgba(58, 91, 217, 0.25);
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.stat-modern-card--desc::before {
    background: linear-gradient(90deg, #3a5bd9, #f97316);
}

.stat-modern-desc-logo img {
    max-width: 100px;
    opacity: 0.9;
}

.stat-modern-desc-text {
    font-size: 0.82rem;
    color: #c6d7ff;
    line-height: 1.6;
    margin: 0;
}

.stat-modern-desc-text strong {
    color: #fff;
    font-weight: 700;
}

.stat-modern-desc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 4px;
}

.stat-modern-desc-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Responsivo */
@media (max-width: 1024px) {
    .stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .stats-modern {
        grid-template-columns: 1fr;
    }
    .stat-modern-number {
        font-size: 1.8rem;
    }
}

/* ========================================================
   ESTILOS PARA CARDS DE ESTATÃSTICAS MODERNOS (index.php)
   ======================================================== */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* 4 colunas em telas grandes, responsivo */
    gap: 20px;
    margin-top: 40px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.08); /* Fundo semi-transparente escuro */
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-modern {
    width: 50px;
    height: 50px;
    background: rgba(142, 164, 255, 0.15); /* Fundo sutil para o Ã­cone */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #8ea4ff; /* Cor primÃ¡ria do seu tema */
    flex-shrink: 0; /* Garante que o Ã­cone nÃ£o encolha */
}

.stat-icon-modern svg {
    width: 24px;
    height: 24px;
    stroke: currentColor; /* Usa a cor do pai */
}

.stat-content-modern {
    flex-grow: 1; /* Permite que o conteÃºdo ocupe o espaÃ§o restante */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label-modern {
    font-size: 0.95rem;
    color: #c0d4ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-card-modern.stat-description-modern {
    background: linear-gradient(135deg, rgba(142, 164, 255, 0.15), rgba(100, 120, 200, 0.15));
    border: 1px solid rgba(142, 164, 255, 0.2);
    padding: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-modern.stat-description-modern p {
    color: #e0eaff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.stat-card-modern.stat-description-modern strong {
    color: #fff;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    .stats-grid-modern {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .stat-card-modern {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
    .stat-icon-modern {
        margin-right: 15px;
        margin-bottom: 0;
    }
    .stat-number-modern {
        font-size: 2rem;
    }
    .stat-label-modern {
        font-size: 0.85rem;
    }
    .stat-card-modern.stat-description-modern {
        text-align: left;
    }
}

/* ------------------------------ */
/* AULAS.PHP. */

/* Estilos especÃ­ficos para a pÃ¡gina de aulas */
.aulas-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.aulas-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.aulas-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.container-aulas {
    padding: 0 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.aulas-header {
    margin-bottom: 30px;
}

.aulas-title {
    font-size:1.8rem;
    font-weight:700;
    margin-bottom:10px;
    color:#111827;
}

.aulas-subtitle {
    font-size:0.98rem;
    color:#4b5563;
    max-width:720px;
}

/* Campo de pesquisa de professores */
.professor-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.professor-search-input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Aumenta padding esquerdo para o Ã­cone */
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.professor-search-input:focus {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    outline: none;
}

.professor-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

.professors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.professor-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    cursor: pointer; /* Indica que o card Ã© clicÃ¡vel */
    border: 2px solid transparent; /* Borda para seleÃ§Ã£o */
}
.professor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.professor-card.selected {
    border-color: #007bff; /* Cor da borda quando selecionado */
    box-shadow: 0 18px 45px rgba(0, 123, 255, 0.25);
}
.professor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #f1f5f9;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.professor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.professor-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}
.professor-bio {
    font-size: 0.92rem;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}
.professor-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.professor-tag {
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 999px;
    background-color: #eff6ff;
    color: #1d4ed8;
    font-weight: 500;
}

.no-results-message, .no-professors-message, .no-schedules-message {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    padding: 20px 0;
}

/* BotÃ£o "Todos os horÃ¡rios disponÃ­veis" */
.aulas-actions {
    text-align: center;
    margin-bottom: 30px;
}
.btn-all-schedules {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid #111827;
    background-color: #fff;
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.btn-all-schedules:hover {
    background-color: #111827;
    color: #fff;
    box-shadow: 0 8px 20px rgba(15,23,42,0.25);
    transform: translateY(-1px);
}

.schedule-section {
    margin-top: 20px;
    margin-bottom: 50px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.schedule-day-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.09);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-day-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1d4ed8;
}

.schedule-day-header-line {
    height: 1px;
    background: linear-gradient(to right, #e5e7eb, #f9fafb);
    margin: 4px 0 4px;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #e5e7eb;
}
.schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

.schedule-time {
    min-width: 58px;
    padding: 6px 10px;
    border-radius: 10px;
    background-color: #eff6ff;
    color: #111827;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
}

.schedule-details {
    flex: 1;
    font-size: 0.86rem;
    color: #4b5563;
}

.schedule-category {
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.schedule-location {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Contato do professor selecionado */
.selected-professor-contact {
    display: none; /* Oculto por padrÃ£o */
    margin: 0 auto 40px;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.selected-professor-contact-text {
    font-size: 0.95rem;
    color: #111827;
}

.selected-professor-name {
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.1s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-contact svg {
    width: 16px;
    height: 16px;
}

.btn-whatsapp {
    background-color: #22c55e;
    color: #fff;
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.35);
}
.btn-whatsapp:hover {
    background-color: #16a34a;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.4);
    transform: translateY(-1px);
}

.btn-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(219, 39, 119, 0.45);
}
.btn-instagram:hover {
    box-shadow: 0 10px 24px rgba(219, 39, 119, 0.55);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .aulas-hero {
        padding: 60px 16px;
    }
    .aulas-hero h1 {
        font-size: 2.4rem;
    }
    .aulas-hero p {
        font-size: 1.05rem;
    }
    .professor-search-input {
        font-size: 0.9rem;
        padding: 10px 15px 10px 40px;
    }
    .professor-search-icon {
        font-size: 1rem;
        left: 12px;
    }
}

/* ========================= */
/* HERO TORNEIOS */
/* Estilos para a seÃ§Ã£o hero da pÃ¡gina de torneios (adicionar ao style.css) */
.tournaments-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 0px;
}
.tournaments-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.tournaments-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tournaments-hero {
        padding: 60px 16px;
    }
    .tournaments-hero h1 {
        font-size: 2.4rem;
    }
    .tournaments-hero p {
        font-size: 1.05rem;
    }
}

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

/* Estilos para a seÃ§Ã£o hero da pÃ¡gina de patrocinadores (adicionar ao style.css) */
.sponsors-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    
}
.sponsors-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.sponsors-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sponsors-hero {
        padding: 60px 16px;
    }
    .sponsors-hero h1 {
        font-size: 2.4rem;
    }
    .sponsors-hero p {
        font-size: 1.05rem;
    }
}

/* PAGINA SOBRE.php*/

/* Estilos para a seÃ§Ã£o hero da pÃ¡gina Sobre */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilos para a seÃ§Ã£o de estatÃ­sticas (Vale o Play em nÃºmeros) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 4 colunas, responsivo */
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background-color: #2a3040; /* Fundo mais escuro para contraste */
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.8rem; /* NÃºmeros maiores */
    font-weight: 800;
    color: var(--color-primary); /* Cor primÃ¡ria do seu tema */
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 123, 255, 0.4); /* Sombra para destaque */
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: #b0b8d0; /* Cor de texto mais clara para o label */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 16px;
    }
    .about-hero h1 {
        font-size: 2.4rem;
    }
    .about-hero p {
        font-size: 1.05rem;
    }
    .stats-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
        gap: 20px;
    }
    .stat-number {
        font-size: 2.8rem; /* Ajusta tamanho do nÃºmero */
    }
    .stat-label {
        font-size: 0.9rem;
    }
}

/* CONTATO.PHP */

/* Estilos para a seÃ§Ã£o hero da pÃ¡gina de contato (adicionar ao style.css) */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.contact-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 16px;
    }
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    .contact-hero p {
        font-size: 1.05rem;
    }
}

/* ================================================
   PATROCINADORES.PHP â€” OTIMIZAÃ‡ÃƒO MOBILE
================================================ */

/* Grid de Patrocinadores */
.sponsors-grid-optimized {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 colunas padrÃ£o */
    gap: 20px;
}

.sponsor-card-optimized {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-card-optimized:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.sponsor-logo-optimized {
    max-height: 150px;
    max-width: 220px;
    object-fit: contain;
}

.sponsor-name-optimized {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

.btn-sponsor-optimized {
    font-size: 0.78rem;
    padding: 7px 16px;
}

/* SeÃ§Ã£o de Oportunidade */
.opportunity-section-optimized {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); /* 2 colunas padrÃ£o */
    gap: 48px;
    align-items: center;
}

.opportunity-content-optimized {
    /* Estilos existentes */
}

.opportunity-title-optimized {
    color:#fff;
    font-family:var(--font-title);
    font-size:1.8rem;
    margin-bottom:16px;
}

.opportunity-text-optimized {
    color:#8ea4ff;
    line-height:1.8;
    margin-bottom:12px;
}

.benefits-card-optimized {
    background:rgba(255,255,255,0.04);
    border-radius:18px;
    padding:28px 24px;
    border:1px solid rgba(255,255,255,0.08);
}

.benefits-title-optimized {
    font-family:var(--font-title);
    font-weight:700;
    color:#fff;
    font-size:1rem;
    margin-bottom:16px;
}

.benefit-item-optimized {
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
    font-size:0.9rem;
    color:#c0d4ff;
}

.benefit-item-optimized:last-child {
    border-bottom: none; /* Remove a borda do Ãºltimo item */
}

.benefit-icon-optimized {
    color:var(--color-orange);
    font-size:1rem;
}

/* Responsividade para Patrocinadores.php */
@media (max-width: 992px) { /* Telas de tablet e menores */
    .sponsors-grid-optimized {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 colunas */
    }
    .opportunity-section-optimized {
        grid-template-columns: 1fr; /* Empilha as colunas */
        gap: 30px;
    }
    .opportunity-content-optimized {
        order: 2; /* Inverte a ordem para conteÃºdo vir depois do card de benefÃ­cios */
    }
    .benefits-card-optimized {
        order: 1; /* Inverte a ordem para card de benefÃ­cios vir primeiro */
    }
}

@media (max-width: 576px) { /* Telas de celular */
    .sponsors-grid-optimized {
        grid-template-columns: 1fr; /* 1 coluna */
    }
    .opportunity-section-optimized {
        gap: 20px;
    }
    .opportunity-title-optimized {
        font-size: 1.5rem;
    }
    .opportunity-text-optimized {
        font-size: 0.9rem;
    }
    .benefits-card-optimized {
        padding: 20px 18px;
    }
    .benefits-title-optimized {
        font-size: 0.9rem;
    }
    .benefit-item-optimized {
        font-size: 0.8rem;
    }
}


/* ConteÃºdo existente do style.css */

/* ================================================
   CONTATO.PHP â€” OTIMIZAÃ‡ÃƒO MOBILE
================================================ */

/* Grid principal da pÃ¡gina de contato */
.contact-grid-optimized {
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); /* 2 colunas padrÃ£o */
    gap: 40px;
    align-items: start;
}

/* FormulÃ¡rio */
.contact-form-container-optimized {
    /* MantÃ©m o layout padrÃ£o */
}

.contact-form-card-optimized {
    background:#fff;
    border-radius:18px;
    padding:32px 28px;
    box-shadow:0 4px 16px rgba(0,0,0,0.07);
}

.contact-form-title-optimized {
    font-family:var(--font-title);
    font-weight:700;
    font-size:1.1rem;
    margin-bottom:20px;
    color:var(--color-text);
}

/* Alertas */
.alert {
    padding:14px 16px;
    border-radius:10px;
    margin-bottom:16px;
    font-size:0.9rem;
}
.alert-success {
    background:#d4edda;
    color:#155724;
}
.alert-error {
    background:#fde8eb;
    color:#721c24;
}

/* Grupos de formulÃ¡rio */
.form-group {
    margin-bottom:14px;
}

.form-label {
    display:block;
    font-size:0.82rem;
    font-weight:600;
    color:#6c7a99;
    text-transform:uppercase;
    letter-spacing:0.06em;
    margin-bottom:6px;
}

.form-input, .form-textarea {
    width:100%;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #e2e8f0;
    font-size:0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
    outline: none;
}

.form-textarea {
    resize:vertical;
}

/* InformaÃ§Ãµes de contato */
.contact-info-container-optimized {
    /* MantÃ©m o layout padrÃ£o */
}

/* Card WhatsApp */
.whatsapp-card-optimized {
    display:block;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    border-radius:16px;
    padding:20px 22px;
    text-decoration:none;
    margin-bottom:16px;
    box-shadow:0 4px 14px rgba(37,211,102,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-card-optimized:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.45);
}

.whatsapp-icon-optimized {
    font-size:1.6rem;
    margin-bottom:6px;
}

.whatsapp-title-optimized {
    font-family:var(--font-title);
    font-weight:700;
    font-size:1rem;
    margin-bottom:4px;
}

.whatsapp-number-optimized {
    font-size:0.88rem;
    opacity:0.9;
}

/* Outros contatos */
.other-contacts-card-optimized {
    background:#fff;
    border-radius:16px;
    padding:24px 22px;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.other-contacts-title-optimized {
    font-family:var(--font-title);
    font-weight:700;
    font-size:0.95rem;
    margin-bottom:16px;
    color:var(--color-text);
}

.contact-item-optimized {
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:10px 0;
    border-bottom:1px solid #f0f3fa;
}

.contact-item-optimized:last-child {
    border-bottom: none;
}

.contact-item-icon-optimized {
    font-size:1.2rem;
    flex-shrink: 0; /* Garante que o Ã­cone nÃ£o encolha */
}

.contact-item-label-optimized {
    font-size:0.78rem;
    color:#6c7a99;
    text-transform:uppercase;
    letter-spacing:0.06em;
    margin-bottom:2px;
}

.contact-item-value-optimized {
    font-size:0.9rem;
    font-weight:600;
}

.contact-item-link-optimized {
    color:var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-link-optimized:hover {
    color: var(--color-primary-dark);
}

/* Card PatrocÃ­nio */
.sponsorship-card-optimized {
    background:var(--color-dark);
    border-radius:16px;
    padding:22px 20px;
    margin-top:16px;
    text-align:center;
    box-shadow:0 4px 14px rgba(0,0,0,0.15);
}

.sponsorship-icon-optimized {
    font-size:1.4rem;
    margin-bottom:8px;
}

.sponsorship-title-optimized {
    font-family:var(--font-title);
    font-weight:700;
    color:#fff;
    font-size:0.95rem;
    margin-bottom:6px;
}

.sponsorship-text-optimized {
    color:#8ea4ff;
    font-size:0.82rem;
    margin-bottom:14px;
}

/* Responsividade para Contato.php */
@media (max-width: 992px) { /* Telas de tablet e menores */
    .contact-grid-optimized {
        grid-template-columns: 1fr; /* Empilha as colunas */
        gap: 30px;
    }
    .contact-form-card-optimized,
    .whatsapp-card-optimized,
    .other-contacts-card-optimized,
    .sponsorship-card-optimized {
        padding: 25px 20px; /* Ajusta padding para mobile */
    }
    .contact-form-title-optimized {
        font-size: 1rem;
    }
    .whatsapp-icon-optimized {
        font-size: 1.4rem;
    }
    .whatsapp-title-optimized {
        font-size: 0.95rem;
    }
    .whatsapp-number-optimized {
        font-size: 0.85rem;
    }
    .other-contacts-title-optimized {
        font-size: 0.9rem;
    }
    .contact-item-label-optimized,
    .sponsorship-text-optimized {
        font-size: 0.75rem;
    }
    .contact-item-value-optimized,
    .sponsorship-title-optimized {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) { /* Telas de celular */
    .contact-grid-optimized {
        gap: 20px;
    }
    .contact-form-card-optimized,
    .whatsapp-card-optimized,
    .other-contacts-card-optimized,
    .sponsorship-card-optimized {
        padding: 20px 18px;
    }
    .form-input, .form-textarea {
        font-size: 0.85rem;
    }
    .form-label {
        font-size: 0.78rem;
    }
}


/* =========================================================
   AULAS.PHP â€” HERO PADRONIZADO (IGUAL PATROCINADORES)
   ========================================================= */
.aulas-hero {
    background: linear-gradient(
            135deg,
            rgba(2, 73, 83, 0.9),
            rgba(9, 103, 120, 0.85)
        ),
        url('/assets/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 60px;
}

.aulas-hero .container {
    max-width: 960px;
    margin: 0 auto;
}

.aulas-hero .hero-eyebrow {
    font-size: 1.rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffb347; /* mesmo laranja do "PARCEIROS OFICIAIS" */
    margin-bottom: 12px;
    font-weight: 600;
}

.aulas-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.aulas-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .aulas-hero {
        padding: 60px 16px;
        margin-bottom: 32px;
    }

    .aulas-hero h1 {
        font-size: 2.4rem;
    }

    .aulas-hero p {
        font-size: 1.05rem;
    }
}

/* --- NOVO: Estilo para a localização no hero --- */
.hero-next-location {
    color: var(--color-orange); /* Cor laranja para arena e cidade */
    font-weight: 600;
}