:root {
    --fonte-principal: 'Lato', sans-serif;
    --vermelho-primario: #eb3835;
    --azul-secundario: #111D69;
    --branco-padrao: #FFFFFF;

    /* Tamanhos fluidos - otimizados para mobile */
    --fs-h1: clamp(2rem, 5vw, 2.75rem);
    --fs-h2: clamp(1.75rem, 4vw, 2.125rem);
    --fs-h3: clamp(1.25rem, 3vw, 1.5rem);
    --fs-body: clamp(1rem, 2vw, 1.0625rem);
    --fs-large: clamp(1.125rem, 2.5vw, 1.25rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte-principal);
    font-weight: 400;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@supports (text-size-adjust: 100%) or (-webkit-text-size-adjust: 100%) {
    html {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

body {
    background-color: var(--branco-padrao);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

main {
    width: 100%;
    overflow-x: hidden;
}

/* Skip Link - Acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--azul-secundario);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10001;
}

.skip-link:focus {
    top: 0;
}

/* header e navbar */
header {
    width: 100%;
    height: 60px;
    background-color: var(--azul-secundario);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }
}

@media (max-width: 432px) {
    header {
        height: 60px;
    }

    header img {
        height: 85px;
    }
}

header nav {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--branco-padrao);
}

header nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

header nav .logo img {
    height: clamp(55px, 10vw, 95px);
    width: clamp(55px, 10vw, 95px);
    object-fit: contain;
    margin-right: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    header nav .logo img {
        height: 45px;
        width: 45px;
    }
}

@media (max-width: 432px) {
    header nav .logo img {
        height: 80px;
        width: 80px;
    }
}

header nav .menu {
    display: flex;
    gap: 40px;
}

header nav .menu ul {
    list-style: none;
    display: flex;
    gap: clamp(24px, 4vw, 32px);
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    header nav .menu ul {
        gap: 30px;
        font-size: 18px;
    }
    
    /* Ajustes para tablets */
    header nav .menu ul {
        gap: 20px;
        font-size: 16px;
    }
    
    header nav .nav-buttons {
        gap: 8px;
    }
    
    header nav .btn-agendar {
        padding: 8px 16px;
        font-size: 15px;
    }
}

header nav .menu ul li a {
    color: var(--branco-padrao);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    padding: 8px 4px;
    display: inline-block;
    letter-spacing: 0.3px;
}

header nav .menu ul li a:hover {
    color: var(--vermelho-primario);
    transition: all 0.3s ease-in-out;
    position: relative;
}

header nav .menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: var(--vermelho-primario);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: left;
}

header nav .menu ul li a:hover::after {
    transform: scaleX(1);
}

header nav .menu ul li {
    position: relative;
}

header nav .menu ul li:hover a::after {
    transform: scaleX(1);
}

header nav .nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

header nav .btn-agendar {
    height: 40px;
    padding: 0 25px;
    background-color: var(--branco-padrao);
    color: var(--vermelho-primario);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

header nav .btn-agendar.btn-aluno {
    background-color: var(--vermelho-primario);
    color: var(--branco-padrao);
}

header nav .btn-agendar.btn-aluno:hover {
    background-color: #d32f2f;
    color: var(--branco-padrao);
}

header nav .btn-agendar:hover {
    background-color: var(--vermelho-primario);
    color: var(--branco-padrao);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Menu Hamburger */
header nav .hamburger {
    display: none;
    width: 12px;
    height: 10px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

@media (max-width: 768px) {
    header nav .hamburger {
        display: flex;
    }
}

header nav .hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--branco-padrao);
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
}

@media (max-width: 432px) {
    header nav .hamburger {
        width: 18px;
        height: 14px;
    }

    header nav .hamburger span {
        height: 1.5px;
    }
}

header nav .hamburger i {
    font-size: 18px;
    color: var(--branco-padrao);
    transition: all 0.3s ease;
}

@media (max-width: 432px) {
    header nav .hamburger i {
        font-size: 16px;
    }
}

/* Responsividade Navbar */
/* Tablets em modo paisagem - iPad Pro, etc */
@media (min-width: 769px) and (max-width: 1024px) {
    header nav .menu ul {
        gap: 15px;
        font-size: 15px;
    }
    
    header nav .nav-buttons {
        gap: 6px;
    }
    
    header nav .btn-agendar {
        height: 36px;
        padding: 0 14px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    /* Esconder menu completamente em mobile */
    header nav .menu {
        display: none;
        visibility: hidden;
    }

    /* Mostrar hamburger */
    header nav .hamburger {
        display: flex;
    }

    /* Menu ativo - quando hamburger é clicado */
    header nav .menu.active {
        display: flex !important;
        visibility: visible !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--azul-secundario);
        z-index: 999;
        padding: 20px 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Menu ativo - lista de links */
    header nav .menu.active ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
    }

    /* Menu ativo - itens da lista */
    header nav .menu.active ul li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
    }

    header nav .menu.active ul li:last-child {
        border-bottom: none;
    }
    
    /* Remove o efeito hover underline em mobile */
    header nav .menu.active ul li a::after {
        display: none;
    }

    /* Menu ativo - botões de ação */
    header nav .menu.active .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 20px;
    }

    header nav .menu.active .btn-agendar {
        margin: 0;
        width: 100%;
        justify-content: center;
        height: 45px;
        font-size: 16px;
    }

    /* Animação do hamburger quando ativo */
    header nav .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    header nav .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    header nav .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.5rem, 8vh, 4rem) clamp(1.25rem, 5vw, 3rem);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding: clamp(2rem, 6vh, 3rem) 5%;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 0;
        padding: 3rem 5%;
    }
}

/* Imagem de fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero::before {
        background-position: center center;
        background-size: cover;
    }
}

@media (max-width: 480px) {
    .hero::before {
        background-position: 40% center;
    }
}

/* Overlay escuro para melhorar legibilidade */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 29, 105, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    max-width: min(900px, 90%);
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
    padding: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.25rem, 6vw, 3rem);
        margin-bottom: 1.25rem;
    }

    .hero-content p {
        font-size: clamp(1.125rem, 3vw, 1.375rem);
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.125rem;
        margin-bottom: 1.75rem;
    }
}

.hero-content h1 {
    font-size: clamp(1.875rem, 5.5vw, 3.5rem);
    font-weight: 900;
    color: var(--branco-padrao);
    margin-bottom: clamp(1rem, 3vh, 1.5rem);
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--branco-padrao);
    margin-bottom: clamp(1.5rem, 4vh, 2.25rem);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.875rem, 2vh, 1.125rem) clamp(2rem, 6vw, 3rem);
    background-color: var(--vermelho-primario);
    color: var(--branco-padrao);
    border: none;
    border-radius: clamp(8px, 1vw, 12px);
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.25);
    letter-spacing: 0.3px;
    min-height: 48px;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .btn-hero {
        padding: 1rem 2.5rem;
        font-size: 1.0625rem;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .btn-hero {
        padding: 1.125rem 2.75rem;
        font-size: 1.125rem;
        min-height: 56px;
        width: 100%;
        max-width: 320px;
    }
}

.btn-hero:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.35);
}

@media (hover: none) {
    .btn-hero:active {
        transform: scale(0.98);
    }
}

.hero-image {
    display: none;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade Hero */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        gap: 40px;
        padding: 40px 5%;
        text-align: center;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 5%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .hero-image img {
        max-height: 300px;
    }
}

/* Old Hero Styles - Remover se não usado */
section#home {
    width: 100%;
    height: auto;
    min-height: 0;
    background: url('../../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

section#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

section#home .content {
    position: relative;
    z-index: 2;
    color: var(--branco-padrao);
    text-align: center;
}

section#home .content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

section#home .content p {
    font-size: 24px;
    margin-bottom: 30px;
}

section#home .content .btn-saiba-mais {
    padding: 15px 30px;
    background-color: var(--vermelho-primario);
    color: var(--branco-padrao);
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

section#home .content .btn-saiba-mais:hover {
    background-color: var(--azul-secundario);
    transition: background-color 0.3s ease-in-out;
}

/* sobre section */
section#sobre {
    padding: clamp(30px, 6vh, 50px) 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: clamp(25px, 5vw, 50px);
    position: relative;
    z-index: 1;
}

.sobre-content {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre-image {
    flex: 1;
    max-width: 600px;
    width: 100%;
}

section#sobre h2 {
    text-align: right;
    font-size: var(--fs-h2);
    color: var(--azul-secundario);
    margin-bottom: clamp(15px, 3vh, 20px);
}

section#sobre p {
    text-align: justify;
    font-size: var(--fs-large);
    color: #555;
    margin-bottom: clamp(20px, 4vh, 30px);
    line-height: 1.6;
}

section#sobre .btn-sobre {
    display: inline-block;
    padding: clamp(12px, 2vh, 16px) clamp(28px, 5vw, 40px);
    background-color: var(--vermelho-primario);
    color: var(--branco-padrao);
    border: none;
    border-radius: 8px;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.25);
    letter-spacing: 0.3px;
}

section#sobre .btn-sobre:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.35);
}

/* Responsividade Sobre */
@media (max-width: 968px) {
    section#sobre {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
        gap: 40px;
    }

    section#sobre h2,
    section#sobre p {
        text-align: center;
    }

    .sobre-content,
    .sobre-image {
        max-width: 100%;
    }
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    touch-action: pan-y pinch-zoom;
}

@media (max-width: 1400px) {
    .carousel {
        max-width: 90%;
        height: calc(90vw * 2 / 3);
    }
}

@media (max-width: 1024px) {
    .carousel {
        max-width: 95%;
        height: calc(95vw * 2 / 3);
    }
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    display: block;
}

.carousel img.active {
    opacity: 1;
    z-index: 2;
    display: block;
}

.carousel .prev,
.carousel .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--azul-secundario);
    border: none;
    padding: clamp(8px, 1.5vw, 12px) clamp(10px, 2vw, 14px);
    font-size: clamp(16px, 2vw, 20px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    -webkit-tap-highlight-color: transparent;
}

.carousel .prev:hover,
.carousel .next:hover {
    background-color: var(--vermelho-primario);
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.3);
}

.carousel .prev:active,
.carousel .next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Carrossel de Patrocinadores */
.patrocinadores-carousel {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 32px 0 28px;
    overflow: hidden;
    position: relative;
}

.patrocinadores-carousel::before,
.patrocinadores-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.patrocinadores-carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.patrocinadores-carousel::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.patrocinadores-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.patrocinadores-container h3 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--azul-secundario);
    margin-bottom: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.patrocinadores-container h3::before,
.patrocinadores-container h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--vermelho-primario), transparent);
}

.patrocinadores-container h3 i {
    color: var(--vermelho-primario);
    font-size: 1.8rem;
}

.patrocinadores-track {
    display: flex;
    animation: scroll 30s linear infinite;
    animation-play-state: running;
    gap: 80px;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.patrocinadores-carousel:hover .patrocinadores-track,
.patrocinadores-carousel:focus-within .patrocinadores-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.patrocinador-item {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(17, 29, 105, 0.05);
    position: relative;
    overflow: hidden;
}

.patrocinador-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.patrocinador-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--azul-secundario), var(--vermelho-primario));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.patrocinador-item:hover::before {
    transform: scaleX(1);
}

.patrocinador-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(17, 29, 105, 0.15);
    border-color: var(--azul-secundario);
}

.patrocinador-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.patrocinador-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .patrocinadores-carousel {
        padding: 18px 0 14px;
    }

    .patrocinadores-carousel::before,
    .patrocinadores-carousel::after {
        width: 80px;
    }

    .patrocinadores-container h3 {
        font-size: 1.3rem;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }

    .patrocinadores-container h3::before,
    .patrocinadores-container h3::after {
        width: 40px;
    }

    .patrocinador-item {
        width: 160px;
        height: 90px;
        padding: 20px;
    }

    .patrocinadores-track {
        gap: 40px;
        animation-duration: 25s;
    }
}

.carousel .prev {
    left: clamp(5px, 1vw, 10px);
}

.carousel .next {
    right: clamp(5px, 1vw, 10px);
}

/* Sobre Simples (versão centralizada sem carrossel) */
.sobre-simples {
    flex-direction: column !important;
    text-align: center !important;
    padding: clamp(50px, 8vh, 80px) 5% !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f2ff 100%);
}

.sobre-content-centralizado {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 6vw, 80px);
    text-align: left;
}

.sobre-texto {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre-logo {
    flex-shrink: 0;
    width: clamp(200px, 25vw, 350px);
    height: clamp(200px, 25vw, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sobre-simples .sobre-content-centralizado .sobre-texto h2 {
    text-align: center !important;
    font-size: var(--fs-h2);
    color: var(--azul-secundario);
    margin-bottom: clamp(20px, 3vh, 30px);
}

.sobre-simples p {
    text-align: justify;
    font-size: var(--fs-large);
    color: #555;
    margin-bottom: clamp(25px, 4vh, 35px);
    line-height: 1.8;
}

.sobre-simples .btn-sobre {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: clamp(12px, 2vh, 16px) clamp(32px, 5vw, 48px);
    background-color: var(--vermelho-primario);
    color: var(--branco-padrao);
    border: none;
    border-radius: 8px;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.25);
    letter-spacing: 0.3px;
}

.sobre-simples .btn-sobre:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.35);
}

@media (max-width: 968px) {
    .sobre-content-centralizado {
        flex-direction: column;
        text-align: center;
    }
    
    .sobre-texto {
        max-width: 100%;
    }
    
    .sobre-simples h2 {
        text-align: center;
    }
    
    .sobre-simples p {
        text-align: center;
    }
    
    .sobre-logo {
        width: clamp(180px, 40vw, 250px);
        height: clamp(180px, 40vw, 250px);
    }
}

.sobre-simples .btn-sobre {
    display: inline-block;
    padding: clamp(12px, 2vh, 16px) clamp(32px, 5vw, 48px);
    background-color: var(--vermelho-primario);
    color: var(--branco-padrao);
    border: none;
    border-radius: 8px;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.25);
    letter-spacing: 0.3px;
}

.sobre-simples .btn-sobre:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.35);
}

/* Responsividade Carousel */
@media (max-width: 768px) {
    .carousel {
        height: clamp(200px, 50vw, 300px);
        border-radius: 10px;
    }

    .carousel .prev,
    .carousel .next {
        padding: 8px 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 220px;
    }

    .carousel .prev,
    .carousel .next {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 250px;
    }

    .carousel .prev,
    .carousel .next {
        padding: 8px 12px;
        font-size: 16px;
    }
}

/* Categorias */
section#categorias {
    padding: clamp(30px, 6vh, 50px) 5%;
    background-color: #ffffff;
    text-align: center;
}

@media (max-width: 432px) {
    section#categorias {
        padding: 25px 4%;
    }
}

section#categorias h2 {
    font-size: var(--fs-h2);
    font-weight: 900;
    color: var(--azul-secundario);
    margin-bottom: clamp(25px, 4vh, 50px);
}

@media (max-width: 432px) {
    section#categorias h2 {
        margin-bottom: 15px;
        font-size: 1.4rem;
    }

    .depoimentos h2,
    .patrocinadores h2 {
        margin-bottom: 15px;
        font-size: 1.4rem;
    }

    .depoimentos h2::after,
    .patrocinadores h2::after {
        width: 50px;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    background: var(--azul-secundario);
    color: var(--branco-padrao);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--vermelho-primario), var(--azul-secundario));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(235, 56, 53, 0.3);
}

.card-icon {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--vermelho-primario);
    margin-bottom: clamp(10px, 2vh, 15px);
}

.card h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--branco-padrao);
    margin-bottom: clamp(8px, 1.5vh, 10px);
}

.card p {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: left;
}

/* Responsividade Bento Grid */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 25px;
    }
}

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

    .card {
        padding: 25px;
    }
}

@media (max-width: 432px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card {
        padding: 16px 18px;
    }

    .card-icon {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .card h3 {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .card p {
        font-size: 0.82rem;
        line-height: 1.35;
    }
}

/* Depoimentos */
.depoimentos {
    padding: clamp(30px, 6vh, 80px) 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

@media (max-width: 432px) {
    .depoimentos {
        padding: 40px 4%;
    }
}

.depoimentos-header {
    text-align: center;
    margin-bottom: clamp(30px, 5vh, 50px);
}

.depoimentos-header h2 {
    font-size: var(--fs-h2);
    font-weight: 900;
    color: var(--azul-secundario);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.depoimentos-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 15vw, 80px);
    height: 4px;
    background: linear-gradient(90deg, var(--vermelho-primario), var(--azul-secundario));
    border-radius: 2px;
}

.depoimentos-header p {
    color: #666;
    font-size: var(--fs-body);
    margin-top: 20px;
}

.depoimentos-player {
    max-width: 700px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: #000;
    margin-bottom: 32px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-info {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.depoimento-info h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--azul-secundario);
    margin-bottom: 8px;
}

.depoimento-info p {
    font-size: var(--fs-body);
    color: #666;
    line-height: 1.6;
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--vermelho-primario);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.3);
}

.control-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.4);
}

.control-btn:active {
    transform: scale(0.95);
}

.video-indicator {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--azul-secundario);
    padding: 12px 24px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .depoimento-info {
        min-height: 100px;
        padding: 20px;
    }
    
    .control-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .video-controls {
        gap: 16px;
    }
}

/* Responsividade Depoimentos */
@media (max-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px 18px;
        min-height: 160px;
    }

    .testimonial-card::before {
        font-size: 60px;
    }
}

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

    .testimonial-card {
        padding: 18px 15px;
    }
}

@media (max-width: 432px) {
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .testimonial-card {
        min-height: 160px;
        padding: 14px 12px;
    }

    .testimonial-card::before {
        font-size: 45px;
        top: 5px;
        left: 10px;
    }

    .testimonial-card p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .testimonial-card h3 {
        font-size: 0.85rem;
    }
}

/* Seção de Destaques - Bento Grid Layout Mobile First */
.destaques-section {
    padding: 40px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.destaques-container {
    max-width: 1400px;
    margin: 0 auto;
}

.destaques-titulo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.destaques-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--vermelho-primario);
    border-radius: 2px;
}

/* Seção de Depoimentos */
.depoimentos-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.depoimentos-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.depoimentos-subtitulo {
    font-size: 1rem;
    color: #666;
    margin-top: -15px;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Título de Depoimentos com mesma formatação */
.depoimentos-section .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.depoimentos-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--vermelho-primario);
    border-radius: 2px;
}

/* Bento Grid - Mobile First (1 coluna) */
.bento-grid-noticias {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* Bento Item Base */
.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 320px;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
}

.bento-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Imagem e Overlay */
.bento-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover .bento-image {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    z-index: 1;
}

/* Conteúdo */
.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.bento-date {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vermelho-primario);
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

}

.bento-resumo {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Tablet - 2 colunas com layout assimétrico */
@media (min-width: 640px) {
    .bento-grid-noticias {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bento-item-1 {
        grid-column: 1 / -1;
        height: 420px;
    }
    
    .bento-item-2,
    .bento-item-3,
    .bento-item-4,
    .bento-item-5,
    .bento-item-6 {
        height: 340px;
    }
    
    .bento-resumo {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .bento-item-1 .bento-resumo {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

/* Tablet Grande - 3 colunas começam a aparecer */
@media (min-width: 768px) {
    .destaques-section {
        padding: 60px 20px;
    }
    
    .bento-grid-noticias {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .bento-item {
        height: 300px;
    }
    
    /* Item 1 - Destaque grande (2x2) */
    .bento-item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        height: auto;
    }
    
    /* Item 2 - Alto à direita */
    .bento-item-2 {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
        height: 300px;
    }
    
    /* Item 3 - Médio à direita */
    .bento-item-3 {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
        height: 300px;
    }
    
    /* Item 4, 5, 6 - Linha inferior */
    .bento-item-4 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        height: 280px;
    }
    
    .bento-item-5 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        height: 280px;
    }
    
    .bento-item-6 {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
        height: 280px;
    }
    
    .bento-content {
        padding: 28px;
    }
    
    .bento-item-1 .bento-content {
        padding: 40px;
    }
    
    .bento-item-1 .bento-date {
        font-size: 0.875rem;
        padding: 8px 16px;
    }
    
    .bento-item-1 .bento-resumo {
        font-size: clamp(1.5rem, 3vw, 2rem);
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
}

/* Desktop - Grid mais sofisticado */
@media (min-width: 1024px) {
    .destaques-section {
        padding: 80px 40px;
    }
    
    .bento-grid-noticias {
        grid-template-columns: repeat(6, 1fr);
        gap: 28px;
    }
    
    /* Item 1 - Destaque principal grande */
    .bento-item-1 {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    
    /* Item 2 - Alto */
    .bento-item-2 {
        grid-column: 4 / 6;
        grid-row: 1 / 2;
        height: 320px;
    }
    
    /* Item 3 - Alto */
    .bento-item-3 {
        grid-column: 6 / 7;
        grid-row: 1 / 2;
        height: 320px;
    }
    
    /* Item 4 - Médio */
    .bento-item-4 {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
        height: 320px;
    }
    
    /* Item 5 - Largo */
    .bento-item-5 {
        grid-column: 5 / 7;
        grid-row: 2 / 3;
        height: 320px;
    }
    
    /* Item 6 - Extra (embaixo de tudo, span completo) */
    .bento-item-6 {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
        height: 280px;
    }
    
    .bento-item {
        border-radius: 28px;
    }
    
    .bento-content {
        padding: 32px;
    }
    
    .bento-item-1 .bento-content {
        padding: 48px;
    }
    
    .bento-date {
        font-size: 0.875rem;
        padding: 8px 16px;
    }
    
    .bento-resumo {
        font-size: 1.125rem;
    }
    
    .bento-item-1 .bento-resumo {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }
    
    .bento-item-6 .bento-resumo {
        font-size: 1.25rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

/* Desktop XL - Layout ainda mais expansivo */
@media (min-width: 1440px) {
    .destaques-section {
        padding: 100px 60px;
    }
    
    .bento-grid-noticias {
        gap: 32px;
    }
    
    .bento-item-2,
    .bento-item-3,
    .bento-item-4,
    .bento-item-5 {
        height: 360px;
    }
    
    .bento-item-6 {
        height: 320px;
    }
    
    .bento-item-1 .bento-content {
        padding: 56px;
    }
    
    .bento-item-1 .bento-resumo {
        font-size: 2.5rem;
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}

/* Animações de entrada */
@media (prefers-reduced-motion: no-preference) {
    .bento-item {
        animation: fadeInUp 0.6s ease-out backwards;
    }
    
    .bento-item-1 { animation-delay: 0.1s; }
    .bento-item-2 { animation-delay: 0.2s; }
    .bento-item-3 { animation-delay: 0.3s; }
    .bento-item-4 { animation-delay: 0.4s; }
    .bento-item-5 { animation-delay: 0.5s; }
    .bento-item-6 { animation-delay: 0.6s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Acessibilidade */
.bento-link:focus {
    outline: 3px solid var(--vermelho-primario);
    outline-offset: 4px;
}

.bento-link:focus-visible {
    outline: 3px solid var(--vermelho-primario);
    outline-offset: 4px;
}

/* Fallback para navegadores mais antigos */
@supports not (display: grid) {
    .bento-grid-noticias {
        display: flex;
        flex-wrap: wrap;
    }
    
    .bento-item {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Botão Ver Todas */
.destaques-botao-container {
    text-align: center;
    margin-top: 50px;
}

.btn-ver-todas-noticias {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--vermelho-primario);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(235, 56, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ver-todas-noticias:hover {
    background: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(235, 56, 53, 0.4);
}

.btn-ver-todas-noticias i {
    transition: transform 0.3s ease;
}

.btn-ver-todas-noticias:hover i {
    transform: translateX(5px);
}

.btn-ver-todas-noticias:focus {
    outline: 3px solid var(--vermelho-primario);
    outline-offset: 4px;
}

@media (min-width: 768px) {
    .destaques-botao-container {
        margin-top: 60px;
    }
    
    .btn-ver-todas-noticias {
        padding: 18px 40px;
        font-size: 1.125rem;
    }
}


/* Tablet */
@media (min-width: 768px) {
    .destaques-section {
        padding: 50px 20px;
    }
    
    .destaques-wrapper {
        gap: 20px;
    }
    
    .destaque-card-principal .destaque-link {
        height: 550px;
    }
    
    .destaque-card-principal .destaque-imagem {
        height: 550px;
    }
    
    .destaques-grid-secundario {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .destaque-card-secundario .destaque-link {
        height: 300px;
    }
    
    .destaque-card-secundario .destaque-imagem {
        height: 300px;
    }
    
    .destaques-grid-terciario {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .destaque-card-terciario .destaque-link {
        height: 280px;
    }
    
    .destaque-card-terciario .destaque-imagem {
        height: 280px;
    }
    
    .destaque-chamada {
        width: 85%;
        right: 0;
        left: auto;
        padding: 18px;
        border-radius: 16px 0 16px 0;
    }
    
    .destaque-titulo-noticia {
        font-size: 1.05rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .destaques-section {
        padding: 60px 20px;
    }
    
    .destaque-card {
        border-radius: 20px;
    }
    
    .destaque-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
    }
    
    .destaque-card-principal .destaque-link {
        height: 750px;
    }
    
    .destaque-card-principal .destaque-imagem {
        height: 750px;
    }
    
    .destaque-card-principal .destaque-data {
        font-size: 1rem;
    }
    
    .destaque-card-principal .destaque-titulo-noticia {
        font-size: 1.5rem;
    }
    
    .destaque-card-secundario .destaque-link {
        height: 350px;
    }
    
    .destaque-card-secundario .destaque-imagem {
        height: 350px;
    }
    
    .destaques-grid-terciario {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .destaque-card-terciario .destaque-link {
        height: 300px;
    }
    
    .destaque-card-terciario .destaque-imagem {
        height: 300px;
    }
    
    .destaque-chamada {
        width: 60%;
        padding: 28px;
        border-radius: 20px 0 20px 0;
    }
    
    .destaque-data {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .destaque-titulo-noticia {
        font-size: 1.2rem;
        font-weight: 900;
        line-height: 1.5;
    }
    
    .btn-ver-todas-noticias {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Responsivo - Manter compatibilidade */
@media (max-width: 968px) {
    .destaques-grid-terciario {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destaques-section {
        padding: 40px 15px;
    }
    
    .destaques-grid-secundario {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .destaques-grid-terciario {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .destaque-card-principal {
        height: 350px;
    }
    
    .destaque-card-principal .destaque-link {
        height: 350px;
    }
    
    .destaque-card-principal .destaque-imagem {
        height: 350px;
    }
    
    .destaque-chamada {
        width: 90%;
        padding: 20px;
        border-radius: 16px 0 16px 0;
    }
    
    .destaque-card-principal .destaque-data {
        font-size: 0.75rem;
        padding: 0;
        margin: 0;
    }
    
    .destaque-card-principal .destaque-titulo-noticia {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .destaque-card-secundario .destaque-chamada {
        padding: 15px;
        width: 90%;
    }
    
    .destaque-card-secundario {
        height: 350px;
    }
    
    .destaque-card-secundario .destaque-link {
        height: 350px;
    }
    
    .destaque-card-secundario .destaque-imagem {
        height: 350px;
    }
    
    .destaque-card-secundario .destaque-titulo-noticia {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .destaque-card-terciario .destaque-chamada {
        padding: 15px;
        width: 100%;
        border-radius: 0 0 16px 16px;
    }
    
    .destaque-card-terciario {
        height: 350px;
    }
    
    .destaque-card-terciario .destaque-link {
        height: 350px;
    }
    
    .destaque-card-terciario .destaque-imagem {
        height: 350px;
    }
    
    .destaque-card-terciario .destaque-titulo-noticia {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .destaques-section {
        padding: 30px 10px;
    }
    
    .destaques-titulo {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .destaque-card-principal {
        height: 350px;
    }
    
    .destaque-card-principal .destaque-link {
        height: 350px;
    }
    
    .destaque-card-principal .destaque-imagem {
        height: 350px;
    }
    
    .destaque-chamada {
        width: 95%;
        padding: 16px;
    }
    
    .destaque-card-principal .destaque-data {
        font-size: 0.7rem;
        padding: 0;
        margin: 0;
    }
    
    .destaque-card-principal .destaque-titulo-noticia {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .destaque-card-secundario .destaque-chamada {
        padding: 14px;
        width: 95%;
    }
    
    .destaque-card-secundario {
        height: 350px;
    }
    
    .destaque-card-secundario .destaque-link {
        height: 350px;
    }
    
    .destaque-card-secundario .destaque-imagem {
        height: 350px;
    }
    
    .destaque-card-secundario .destaque-titulo-noticia {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .destaque-card-terciario .destaque-chamada {
        padding: 12px;
    }
    
    .destaque-card-terciario {
        height: 350px;
    }
    
    .destaque-card-terciario .destaque-link {
        height: 350px;
    }
    
    .destaque-card-terciario .destaque-imagem {
        height: 350px;
    }
    
    .destaque-card-terciario .destaque-titulo-noticia {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .btn-ver-todas-noticias {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Patrocinadores */
.patrocinadores {
    padding: clamp(30px, 6vh, 80px) 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

@media (max-width: 432px) {
    .patrocinadores {
        padding: 20px 4%;
    }
}

.patrocinadores h2 {
    font-size: var(--fs-h2);
    font-weight: 900;
    color: var(--azul-secundario);
    margin-bottom: clamp(25px, 4vh, 50px);
    position: relative;
    display: inline-block;
}

.patrocinadores h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 15vw, 80px);
    height: 4px;
    background: linear-gradient(90deg, var(--vermelho-primario), var(--azul-secundario));
    border-radius: 2px;
}

.sponsors-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(25px, 4vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.sponsors-logos img {
    width: 100%;
    max-width: 280px;
    height: clamp(140px, 20vw, 180px);
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    padding: clamp(24px, 3vw, 32px);
    background: white;
    border-radius: clamp(10px, 2vw, 12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    touch-action: manipulation;
}

.sponsors-logos img:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(235, 56, 53, 0.2);
}

.sponsors-logos .logo-brisa {
    max-width: 350px;
    height: clamp(160px, 22vw, 200px);
}

/* Responsividade Patrocinadores */
@media (max-width: 768px) {
    .sponsors-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .sponsors-logos img {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .sponsors-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sponsors-logos img {
        max-width: 200px;
        height: 120px;
        padding: 15px;
    }

    .sponsors-logos .logo-brisa {
        max-width: 220px;
        height: 140px;
    }
}

@media (max-width: 432px) {
    .sponsors-logos {
        gap: 15px;
    }

    .sponsors-logos img {
        height: 100px;
        padding: 12px;
    }

    .sponsors-logos .logo-brisa {
        height: 120px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--azul-secundario) 0%, #0a1440 100%);
    color: var(--branco-padrao);
    padding: clamp(30px, 6vh, 60px) 5% 0;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 5% 0;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.5rem 4% 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 3vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: clamp(20px, 3vh, 40px);
}

@media (max-width: 768px) {
    .footer-content {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1rem;
        padding-bottom: 1rem;
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--branco-padrao);
    margin-bottom: clamp(15px, 2vh, 20px);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--vermelho-primario);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    object-fit: contain;
}

.footer-logo h3 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--branco-padrao);
}

.footer-section p {
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-media a {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco-padrao);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.social-media a:hover {
    background-color: var(--vermelho-primario);
    transform: translateY(-3px);
}

/* Footer melhorado - Redes sociais maiores */
.social-media-large {
    margin-top: 15px;
}

.social-media-large a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-media-large a:hover {
    background: var(--vermelho-primario);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(235, 56, 53, 0.4);
    border-color: var(--vermelho-primario);
}

/* Cores específicas para cada rede social */
.social-media-large a[title="Facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-media-large a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.4);
}

.social-media-large a[title="YouTube"]:hover {
    background: #ff0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.social-media-large a[title="WhatsApp"]:hover {
    background: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.social-media-large a[title="E-mail"]:hover {
    background: linear-gradient(135deg, #ea4335, #fbbc05, #34a853, #4285f4);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
}

.footer-about {
    max-width: 350px;
}

.footer-contact-quick {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--vermelho-primario);
    transition: all 0.3s ease;
}

.footer-contact-quick:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.footer-links-centered {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-unidades {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0f266d, #1e3a8a);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(96, 165, 250, 0.3);
}

.footer-link-unidades:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-color: rgba(96, 165, 250, 0.5);
}

.footer-link-unidades i {
    color: #60a5fa;
    font-size: 1rem;
}

.footer-link-socio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.footer-link-socio:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.footer-link-socio i {
    color: #fca5a5;
    font-size: 1rem;
}

.footer-contact-quick p {
    margin: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-quick i {
    color: var(--vermelho-primario);
    font-size: 16px;
    min-width: 20px;
}

.footer-social-text {
    margin: 10px 0 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: clamp(10px, 1.5vh, 12px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(13px, 2vw, 14px);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    touch-action: manipulation;
}

.footer-section ul li a:hover {
    color: var(--vermelho-primario);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vh, 15px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--vermelho-primario);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item p {
    margin: 0;
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.6;
}

.schedule p {
    margin-bottom: 15px;
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.schedule strong {
    color: var(--branco-padrao);
}

.footer-bottom {
    text-align: center;
    padding: clamp(12px, 2vh, 20px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-developed {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-developed i {
    color: var(--vermelho-primario);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

@media (max-width: 432px) {
    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

.footer-bottom p {
    font-size: clamp(12px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

.footer-bottom i.fa-heart {
    color: var(--vermelho-primario);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsividade Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 18px;
    }

    .footer-logo h3 {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 18px;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .social-media {
        justify-content: center;
    }

    .social-media-large {
        justify-content: center;
        gap: 12px;
    }

    .social-media-large a {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .footer-about {
        max-width: 100%;
        text-align: center;
    }

    .footer-contact-quick {
        text-align: center;
        margin: 20px auto;
        max-width: 300px;
    }
    
    .footer-links-centered {
        align-items: center;
    }
    
    .footer-link-unidades,
    .footer-link-socio {
        width: 100%;
        justify-content: center;
    }

    .footer-contact-quick p {
        justify-content: center;
        font-size: 13px;
    }

    .footer-social-text {
        text-align: center;
        font-size: 13px;
        padding: 0 20px;
    }

    .footer-section ul {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }

    .footer-section ul li {
        margin: 0;
    }

    .contact-item {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p,
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .footer-section ul {
        text-align: center;
        list-style: none;
        padding: 0;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .footer-logo {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
    }

    .footer-logo img {
        width: 50px;
        height: 50px;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-section:first-child p {
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
        padding: 0;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .social-media-large {
        gap: 10px;
        justify-content: center;
    }

    .social-media-large a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-contact-quick {
        padding: 12px;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-link-unidades,
    .footer-link-socio {
        font-size: 13px;
        justify-content: center;
        text-align: center;
    }

    .footer-link-unidades i,
    .footer-link-socio i {
        font-size: 16px;
    }
    .footer-link-socio {
        font-size: 13px;
        justify-content: flex-start;
    }

    .footer-link-socio i {
        font-size: 16px;
    }

    .footer-contact-quick p {
        font-size: 12px;
        gap: 8px;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-contact-quick i {
        font-size: 14px;
    }

    .footer-social-text {
        font-size: 12px;
        padding: 0 15px;
    }

    .footer-bottom-content {
        gap: 6px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-developed {
        font-size: 11px;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-item {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .contact-item i {
        font-size: 16px;
        min-width: 18px;
    }

    .contact-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .schedule p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .schedule p strong {
        display: inline;
    }

    .schedule {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .social-media a {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Otimizações Avançadas Mobile */

/* Prevent horizontal scroll */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 70px;
    }
}

/* Improve tap targets for mobile (minimum 44x44px) */
a, button, .btn, .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Prevent text selection on buttons */
button, .btn, .hamburger {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--vermelho-primario);
    outline-offset: 2px;
}

/* Prevent zoom on input focus (iOS) */
input, select, textarea {
    font-size: 16px;
}

/* Better line height for mobile reading */
@media (max-width: 768px) {
    body {
        line-height: 1.7;
    }

    p {
        line-height: 1.8;
    }
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure videos are responsive */
video {
    max-width: 100%;
    height: auto;
}

/* Improve button spacing on mobile */
@media (max-width: 480px) {
    .btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }

    .hero-content .btn {
        margin: 0 auto;
    }
}

/* Better mobile menu */
@media (max-width: 768px) {
    .menu.active {
        overflow-y: auto;
    }
}

/* Improve carousel touch experience */
.carousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Better card hover on touch devices */
@media (hover: none) {

    .card:hover,
    .testimonial-card:hover,
    .sponsors-logos img:hover {
        transform: none;
    }

    .card:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
}

/* Optimize text contrast for readability */
@media (max-width: 768px) {
    .hero-content p {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
}

/* Safe area for notched devices (iPhone X and similar) */
@supports (padding: max(0px, env(safe-area-inset-left))) {
    header {
        padding-left: max(5%, env(safe-area-inset-left));
        padding-right: max(5%, env(safe-area-inset-right));
    }

    footer {
        padding-left: max(5%, env(safe-area-inset-left));
        padding-right: max(5%, env(safe-area-inset-right));
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Loading optimization */
@media (prefers-reduced-data: reduce) {
    * {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}

/* Estilos para detalhes das categorias */
.card {
    position: relative;
}

.card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.card .arrow-icon {
    font-size: 0.8em;
    transition: transform 0.3s ease;
    color: var(--vermelho-primario);
    cursor: pointer;
}

.card.active .arrow-icon {
    transform: rotate(180deg);
}

.categoria-detalhes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.card.active .categoria-detalhes {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

.detalhes-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(235, 56, 53, 0.2);
}

.detalhe-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9em;
}

.detalhe-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detalhe-item i {
    color: var(--vermelho-primario);
    font-size: 1.2em;
    min-width: 20px;
}

.detalhe-item strong {
    color: var(--vermelho-primario);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .detalhe-item {
        font-size: 0.8em;
        padding: 6px 0;
        gap: 8px;
    }
    
    .detalhe-item i {
        font-size: 1.1em;
    }

    .detalhes-content {
        padding: 10px;
    }
    
    .card.active .categoria-detalhes {
        margin-top: 10px;
    }
}

/* Seção Time Profissional */
.time-profissional {
    padding: 50px 5%;
    background: linear-gradient(135deg, var(--azul-secundario) 0%, #0d1440 100%);
    color: white;
}

.profissional-title {
    text-align: center;
    margin-bottom: 35px;
}

.profissional-title h2 {
    font-size: var(--fs-h1);
    font-weight: 900;
    font-family: var(--fonte-principal);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.profissional-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vermelho-primario) 0%, #d32f2f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 16px rgba(235, 56, 53, 0.3);
}

.profissional-icon i {
    font-size: 1.8em;
    color: white;
}

.time-profissional h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
}

/* Abas Profissional */
.profissional-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1.1em;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--vermelho-primario), #d32f2f);
    border-color: var(--vermelho-primario);
    box-shadow: 0 4px 20px rgba(235, 56, 53, 0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Seção Elenco */
.elenco-section {
    margin-top: 0;
}

/* Seção Comissão Técnica */
.comissao-section {
    margin-top: 0;
}

.comissao-section .jogadores-carousel {
    padding: 0 20px;
}

.comissao-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.comissao-section .carousel-btn {
    display: none;
}

.jogadores-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.jogadores-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    padding: 20px 10px;
}

.jogadores-container::-webkit-scrollbar {
    display: none;
}

/* Filtros de Posição */
.posicao-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 35px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filtro-btn {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    min-height: 44px; /* Touch target mínimo recomendado */
}

.filtro-btn i {
    font-size: 1.1em;
    flex-shrink: 0;
}

.filtro-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--vermelho-primario);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.3);
}

.filtro-btn.active {
    background: var(--vermelho-primario);
    border-color: var(--vermelho-primario);
    box-shadow: 0 4px 16px rgba(235, 56, 53, 0.4);
    transform: scale(1.05);
}

.filtro-btn.active:hover {
    background: #d42f2c;
    transform: translateY(-2px) scale(1.05);
}

.jogador-card {
    flex: 0 0 clamp(260px, 25vw, 300px);
    min-width: clamp(240px, 22vw, 280px);
    max-width: clamp(280px, 28vw, 320px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: clamp(12px, 1.5vw, 18px);
    overflow: hidden;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    will-change: transform;
    aspect-ratio: 3/4;
}

@media (max-width: 768px) {
    .jogador-card {
        flex: 0 0 clamp(240px, 45vw, 280px);
        min-width: 240px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .jogador-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

.jogador-card:hover {
    transform: translateY(-6px);
    border-color: var(--vermelho-primario);
    box-shadow: 0 12px 32px rgba(235, 56, 53, 0.3);
}

.jogador-card:hover .jogador-foto img {
    transform: scale(1.08);
}

.jogador-foto {
    position: relative;
    width: 100%;
    height: clamp(280px, 35vw, 320px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--azul-secundario) 0%, #0a1234 100%);
    cursor: pointer;
    aspect-ratio: 4/5;
}

@media (max-width: 768px) {
    .jogador-foto {
        height: clamp(260px, 40vw, 300px);
    }
}

@media (max-width: 480px) {
    .jogador-foto {
        height: 320px;
    }
}

.jogador-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jogador-numero {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--vermelho-primario);
    color: white;
    min-width: 45px;
    height: 45px;
    padding: 0 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.jogador-info {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.jogador-card h4 {
    font-size: 1.1em;
    margin: 0;
    font-weight: 700;
    color: white;
}

.jogador-posicao {
    color: var(--vermelho-primario);
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
}

.jogador-posicao i {
    font-size: 1.1em;
}

/* Botões do Carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--azul-secundario);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3em;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--vermelho-primario);
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.3);
}

.prev-jogador {
    left: 0;
}

.next-jogador {
    right: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .time-profissional {
        padding: 60px 5%;
    }

    .profissional-title {
        margin-bottom: 40px;
    }

    .profissional-icon {
        width: 65px;
        height: 65px;
    }

    .profissional-icon i {
        font-size: 2em;
    }

    .jogadores-carousel {
        padding: 0;
        overflow: hidden;
    }

    .jogadores-carousel .carousel-btn {
        display: none !important;
    }

    .jogadores-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: none !important;
        gap: 16px !important;
        padding: 20px !important;
    }

    .jogadores-container::-webkit-scrollbar {
        display: block !important;
        height: 4px;
    }

    .jogadores-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .jogadores-container::-webkit-scrollbar-thumb {
        background: rgba(218, 165, 32, 0.3);
        border-radius: 2px;
    }

    /* Scroll horizontal para comissão */
    .comissao-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: none !important;
        gap: 16px !important;
        padding: 20px !important;
        justify-content: flex-start !important;
    }

    .comissao-container::-webkit-scrollbar {
        display: block !important;
        height: 4px;
    }

    .comissao-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .comissao-container::-webkit-scrollbar-thumb {
        background: rgba(218, 165, 32, 0.3);
        border-radius: 2px;
    }

    .comissao-section .carousel-btn {
        display: none !important;
    }

    .filtro-btn {
        padding: 10px 18px;
        font-size: 0.85em;
    }

    .jogador-card {
        flex: 0 0 75% !important;
        min-width: 75% !important;
        max-width: 75% !important;
        scroll-snap-align: start;
    }

    .comissao-card {
        flex: 0 0 75% !important;
        min-width: 75% !important;
        max-width: 75% !important;
        scroll-snap-align: start;
    }

    .jogador-card:first-child,
    .comissao-card:first-child {
        margin-left: 0 !important;
    }

    .jogador-foto {
        height: 280px;
    }

    .jogador-info {
        padding: 14px;
    }

    .jogador-numero {
        min-width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .jogadores-carousel {
        padding: 0;
    }

    .posicao-filtros {
        gap: 10px;
        margin-bottom: 30px;
        padding: 0 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .filtro-btn {
        padding: 12px 18px;
        font-size: 0.85em;
        border-radius: 25px;
        gap: 8px;
        flex: 0 1 auto;
        white-space: nowrap;
    }
    
    .filtro-btn i {
        font-size: 1.1em;
    }
    
    .filtro-btn[data-posicao="todos"] {
        flex: 0 1 100%;
        max-width: 200px;
        margin: 0 auto 10px;
    }

    .jogador-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: start;
    }

    .comissao-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: start;
    }

    .jogador-card:first-child,
    .comissao-card:first-child {
        margin-left: 0 !important;
    }

    .jogador-foto {
        height: 260px;
    }

    .jogador-info {
        padding: 12px;
    }

    .jogador-card h4 {
        font-size: 1em;
    }

    .jogador-posicao {
        font-size: 0.8em;
    }

    .jogador-numero {
        min-width: 36px;
        height: 36px;
        font-size: 1.1em;
        top: 10px;
        right: 10px;
    }
}

/* Otimização para telas muito pequenas (smartphones compactos) */
@media (max-width: 380px) {
    .posicao-filtros {
        gap: 8px;
        padding: 0 10px;
        flex-wrap: wrap;
    }
    
    .filtro-btn {
        padding: 10px 14px;
        font-size: 0.8em;
        border-radius: 20px;
        gap: 6px;
        white-space: nowrap;
    }
    
    .filtro-btn i {
        font-size: 1em;
    }
    
    .filtro-btn[data-posicao="todos"] {
        flex: 0 1 100%;
        max-width: 180px;
        margin: 0 auto 8px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

/* Seção Campeonatos */
.campeonatos-section {
    margin-top: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 40px;
}

.campeonatos-section h3 {
    text-align: center;
    font-size: 1.75em;
    margin-bottom: 30px;
    font-weight: 700;
}

.campeonatos-grid {
    display: flex;
    gap: 25px;
    padding: 20px 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    cursor: move;
}

.campeonatos-grid:active {
    cursor: move;
}

.campeonatos-grid::-webkit-scrollbar {
    height: 10px;
}

.campeonatos-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 30px;
}

.campeonatos-grid::-webkit-scrollbar-thumb {
    background: var(--vermelho-primario);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.campeonatos-grid::-webkit-scrollbar-thumb:hover {
    background: #c93532;
    border-color: rgba(255, 255, 255, 0.1);
}

.campeonato-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 280px;
    flex-shrink: 0;
    cursor: pointer;
}

.campeonato-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--vermelho-primario);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.campeonato-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 15px;
    overflow: hidden;
}

.campeonato-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.campeonato-icon i {
    font-size: 2em;
    color: white;
}

.campeonato-card h4 {
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 700;
    color: white;
}

.campeonato-card p {
    font-size: 0.95em;
    opacity: 0.9;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .campeonatos-section {
        margin-top: 60px;
    }

    .campeonatos-section h3 {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .campeonatos-grid {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        padding: 12px 8px 8px;
    }

    .campeonato-card {
        padding: 25px 20px;
        min-width: clamp(220px, 72vw, 280px);
        flex: 0 0 clamp(220px, 72vw, 280px);
        scroll-snap-align: start;
    }

    .campeonato-icon {
        width: 60px;
        height: 60px;
    }

    .campeonato-icon i {
        font-size: 1.6em;
    }
}

/* Seção de Planos */
.planos {
    padding: 50px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    position: relative;
    overflow: hidden;
}

.planos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235, 56, 53, 0.03) 0%, transparent 70%);
    animation: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.planos-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.planos-header h2 {
    font-size: var(--fs-h2);
    color: var(--azul-secundario);
    margin-bottom: 15px;
    font-weight: 700;
}

.planos-header p {
    font-size: var(--fs-large);
    color: #666;
    font-weight: 300;
}

/* Box de acesso para sócios */
.ja-socio-box {
    margin-top: 32px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    border: 2px solid #d4e6ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(17, 29, 105, 0.08);
    transition: all 0.3s ease;
}

.ja-socio-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 29, 105, 0.12);
}

.ja-socio-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--azul-secundario);
}

.ja-socio-content i {
    font-size: 24px;
    color: var(--azul-secundario);
}

.ja-socio-content span {
    font-size: 16px;
    font-weight: 600;
    color: var(--azul-secundario);
}

.btn-acesso-socio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--azul-secundario);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(17, 29, 105, 0.2);
}

.btn-acesso-socio:hover {
    background-color: #0d1550;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(17, 29, 105, 0.3);
}

.btn-acesso-socio i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-acesso-socio:hover i {
    transform: translateX(3px);
}

/* Responsivo para mobile */
@media (max-width: 640px) {
    .ja-socio-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .ja-socio-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-acesso-socio {
        width: 100%;
        justify-content: center;
    }
}

.planos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Layout otimizado para diferentes larguras */
@media (max-width: 1024px) {
    .planos-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .planos-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.plano-card {
    background: white;
    border-radius: clamp(12px, 1.5vw, 20px);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(0.875rem, 1.5vw, 1.25rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 100%;
    height: 100%;
    will-change: transform;
    isolation: isolate;
}

.planos-container {
    align-items: stretch;
}

.plano-card::before {
    border: 2px solid var(--vermelho-primario);
    box-shadow: 0 8px 32px rgba(235, 56, 53, 0.15);
}

@media (min-width: 1200px) {
    .plano-destaque {
        transform: scale(1.02);
    }
    
    .plano-destaque:hover {
        transform: scale(1.02) translateY(-6px);
    }
}

.plano-destaque::before {
    height: clamp(4px, 0.6vw, 8px);
}

.plano-destaque:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(235, 56, 53, 0.2);
}

/* Plano em Destaque */
.plano-destaque {
    transform: scale(1.02);
    border: 2px solid rgba(235, 56, 53, 0.15);
    box-shadow: 0 8px 32px rgba(235, 56, 53, 0.15);
}

.plano-destaque::before {
    height: 8px;
}

.plano-diamante {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border: clamp(2px, 0.3vw, 3px) solid rgba(235, 56, 53, 0.2);
    box-shadow: 0 12px 40px rgba(235, 56, 53, 0.15);
}

@media (min-width: 1200px) {
    .plano-diamante {
        transform: scale(1.05);
    }
    
    .plano-diamante:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

.plano-diamante::before {
    height: clamp(4px, 0.6vw, 8px);
    background: var(--vermelho-primario);
}

.plano-diamante:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 16px 48px rgba(235, 56, 53, 0.35);
}

.plano-diamante h3 {
    color: var(--vermelho-primario);
}

.badge-diamante {
    background: var(--vermelho-primario);
    animation: pulse 2s ease-in-out infinite;
}

.btn-plano-diamante {
    background: var(--vermelho-primario);
    color: white;
}

.btn-plano-diamante:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 56, 53, 0.4);
}

/* Badge do Plano */
.plano-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--azul-secundario);
    color: white;
    font-size: 0.65em;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    width: fit-content;
}

.badge-popular {
    background: var(--vermelho-primario);
}

.plano-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--azul-secundario);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    font-weight: 700;
    line-height: 1.2;
}

/* Preços */
.plano-preco {
    margin: clamp(0.5rem, 1.2vw, 1rem) 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preco-de {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #999;
    text-decoration: line-through;
    font-weight: 300;
}

.preco-por {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--vermelho-primario);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.preco-mes {
    font-size: 0.4em;
    color: #666;
    font-weight: 400;
    vertical-align: super;
}

/* Parcelamento */
.parcelamento {
    text-align: center;
    color: #666;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    margin-bottom: 0;
    padding: clamp(0.5rem, 1vw, 0.75rem);
    background: #f5f5f5;
    border-radius: clamp(6px, 1vw, 10px);
    line-height: 1.4;
    word-break: break-word;
    min-height: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parcelamento i {
    color: var(--azul-secundario);
    margin-right: 0.35rem;
    font-size: 1.1em;
}

.parcelamento i {
    color: var(--azul-secundario);
    margin-right: 5px;
}

/* Tag de Economia */
.economia-tag {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: var(--vermelho-primario);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: clamp(0.72rem, 0.9vw, 0.8rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    animation: none;
    border: 1px solid rgba(235, 56, 53, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    min-width: 0;
    max-width: none;
    align-self: stretch;
    justify-self: stretch;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

.plano-beneficios {
    list-style: none;
    margin: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    min-height: 0;
}

.plano-beneficios li {
    padding: clamp(0.5rem, 1vw, 0.75rem) 0;
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    display: flex;
    align-items: flex-start;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.plano-beneficios li:last-child {
    border-bottom: none;
}

.plano-beneficios i {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    min-width: clamp(18px, 2vw, 22px);
    flex-shrink: 0;
}

.plano-beneficios .fa-check {
    color: #4CAF50;
}

.plano-beneficios .fa-times {
    color: #ccc;
}

/* Botões dos Planos */
.btn-plano {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, var(--azul-secundario) 0%, #1a2980 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    width: 100%;
    border: none;
}

@media (max-width: 768px) {
    .btn-plano {
        padding: 1rem 2rem;
        font-size: 1.0625rem;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .btn-plano {
        padding: 1.125rem 2.25rem;
        font-size: 1.125rem;
        min-height: 56px;
    }
}

.btn-plano:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #1a2980 0%, #0d1440 100%);
}

@media (hover: none) {
    .btn-plano:active {
        transform: scale(0.98);
    }
}

.btn-plano-destaque {
    background: linear-gradient(135deg, var(--vermelho-primario) 0%, #c62828 100%);
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    box-shadow: 0 4px 15px rgba(235, 56, 53, 0.4);
    animation: none;
}

.btn-plano-destaque:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(235, 56, 53, 0.5);
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(235, 56, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(235, 56, 53, 0.8);
    }
}

/* Responsividade Avançada - Mobile First */

/* Tablets pequenos e paisagem */
@media (min-width: 600px) and (max-width: 767px) {
    .planos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .planos {
        padding: clamp(3rem, 8vw, 5rem) 5%;
    }

    .planos-container {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
        padding: 0 1rem;
    }

    .plano-card {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .plano-destaque,
    .plano-diamante {
        transform: scale(1);
    }
    
    /* Melhorias para touch */
    a, button {
        min-height: 48px;
        min-width: 48px;
    }

    .plano-card h3 {
        font-size: 1.5rem;
    }

    .preco-por {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .planos {
        padding: 2.5rem 4%;
    }

    .plano-card {
        padding: 1.75rem 1.5rem;
    }

    .plano-card h3 {
        font-size: 1.625rem;
    }

    .preco-por {
        font-size: 2.75rem;
    }

    .parcelamento {
        font-size: 0.9375rem;
        min-height: 3rem;
        height: 3rem;
        padding: 0.625rem;
    }

    .plano-beneficios li {
        font-size: 1rem;
        padding: 0.625rem 0;
    }
}

/* Mobile grande */
@media (max-width: 640px) {
    .planos-header h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .planos-header p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .plano-card {
        padding: 1.25rem 1rem;
    }
    
    .plano-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
    }
    
    .economia-tag {
        font-size: 0.75rem;
        padding: 0.42rem 0.85rem;
        line-height: 1.05;
        border-radius: 7px;
        margin-bottom: 0.5rem;
        min-width: 0;
    }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
    .planos-container {
        padding: 0 0.75rem;
    }
    
    .plano-card {
        padding: 1rem 0.875rem;
    }
    
    .plano-beneficios li {
        font-size: 0.875rem;
    }
}

/* Landscape optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .planos {
        padding: 2rem 5%;
    }
    
    .plano-card {
        padding: 1rem 1.25rem;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .plano-card {
        border-width: 0.5px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .plano-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .plano-card h3 {
        font-size: 1.5em;
    }

    .preco-por {
        font-size: 2.2em;
    }

    .btn-plano {
        padding: 15px 30px;
        font-size: 1em;
    }
}

/* Modal do Jogador */
.modal-jogador {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-jogador-content {
    position: relative;
    background: #111D69;
    border-radius: 0;
    max-width: 700px;
    width: 85%;
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease-out;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--vermelho-primario);
}

.modal-jogador-body {
    display: flex;
    gap: 25px;
    padding: 30px;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-jogador-foto {
    position: relative;
    flex: 0 0 280px;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
}

.modal-jogador-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.modal-jogador-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    padding: 20px 0;
}

.modal-titulo {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.modal-titulo span {
    color: #fff;
}

.modal-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-stats p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.modal-stats p strong {
    color: #fff;
    font-weight: 700;
}

.modal-stats p span {
    color: #fff;
    font-weight: 400;
}

.modal-carreira {
    margin-top: 10px;
}

.modal-carreira span {
    display: block;
    margin-top: 8px;
    line-height: 1.8;
}

.jogador-card {
    cursor: pointer;
}

.jogador-card:hover {
    transform: translateY(-6px) scale(1.02);
}

@media (max-width: 968px) {
    .modal-jogador-content {
        max-width: 600px;
        width: 90%;
    }

    .modal-jogador-body {
        gap: 20px;
        padding: 25px;
    }

    .modal-jogador-foto {
        flex: 0 0 240px;
        height: 340px;
    }

    .modal-titulo {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .modal-stats p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .modal-jogador-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-jogador-body {
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
        overflow-y: auto;
        max-height: 80vh;
    }

    .modal-jogador-foto {
        flex: 0 0 auto;
        width: 100%;
        height: 320px;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 32px;
    }

    .modal-titulo {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .modal-stats {
        gap: 10px;
    }

    .modal-stats p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .modal-jogador-content {
        width: 96%;
        border-radius: 0;
    }

    .modal-jogador-body {
        padding: 18px 12px;
    }

    .modal-jogador-foto {
        height: 280px;
    }

    .modal-close {
        top: 8px;
        right: 12px;
        font-size: 28px;
    }

    .modal-titulo {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .modal-stats {
        gap: 8px;
    }

    .modal-stats p {
        font-size: 0.8rem;
    }

    .modal-carreira {
        margin-top: 5px;
    }
}

/* ========================================
   OTIMIZAÇÕES RESPONSIVAS AVANÇADAS GLOBAIS
   ======================================== */

/* Container geral responsivo */
@media (min-width: 1400px) {
    .container,
    .planos-container,
    .noticias-grid,
    .jogadores-lista {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablets - Modo paisagem */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    section {
        padding: clamp(3rem, 6vh, 4rem) 5%;
    }
    
    .planos-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Breakpoint específico 1360x760 */
@media (min-width: 1280px) and (max-width: 1400px) and (min-height: 700px) and (max-height: 800px) {
    body {
        font-size: 0.9rem;
    }
    
    :root {
        --fs-h1: clamp(1.8rem, 4.5vw, 2.5rem);
        --fs-h2: clamp(1.5rem, 3.5vw, 2rem);
        --fs-h3: clamp(1.1rem, 2.5vw, 1.4rem);
        --fs-body: clamp(0.9rem, 1.8vw, 1rem);
        --fs-large: clamp(1rem, 2.2vw, 1.15rem);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 2.5rem 5%;
    }
    
    .destaques-section {
        padding: 50px 20px;
    }
    
    .bento-item-1 .bento-content {
        padding: 36px;
    }
    
    .bento-content {
        padding: 24px;
    }
    
    .jogador-card {
        padding: 1.2rem;
    }
    
    .plano-card {
        padding: 1.5rem;
    }
}

/* Tablets - Modo retrato */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .planos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: clamp(2.25rem, 6vw, 3rem);
    }
}

/* Mobile grande - Modo paisagem */
@media (min-width: 480px) and (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: 0;
        padding: 2.5rem 5%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 2.5rem 5%;
    }
}

/* Mobile médio */
@media (min-width: 375px) and (max-width: 479px) {
    body {
        font-size: 0.9375rem;
    }
    
    .plano-card {
        padding: 1.125rem 1rem;
    }
    
    .jogador-card {
        min-width: 100%;
    }
}

/* Mobile pequeno */
@media (max-width: 374px) {
    :root {
        --fs-h1: clamp(1.5rem, 8vw, 2rem);
        --fs-h2: clamp(1.25rem, 6vw, 1.75rem);
        --fs-body: 0.875rem;
    }
    
    .plano-card {
        padding: 1rem 0.875rem;
    }
    
    .btn-plano,
    .btn-hero {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Orientação específica */
@media (orientation: portrait) {
    .hero {
        min-height: 100vh;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .plano-card {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .plano-card,
    .jogador-card,
    .btn-plano,
    .btn-hero {
        border-width: 2px;
        border-style: solid;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .plano-card:hover,
    .jogador-card:hover {
        transform: none;
    }
    
    .plano-card:active {
        transform: scale(0.98);
    }
    
    .btn-plano,
    .btn-hero,
    a,
    button {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Foldable devices */
@media (min-width: 280px) and (max-width: 653px) {
    .planos-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 1rem 0.75rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .planos-container,
    .hero-content {
        max-width: 1600px;
    }
    
    .plano-card {
        max-width: 420px;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--vermelho-primario);
    outline-offset: 2px;
}

/* Safe area insets for notched devices */
@supports (padding: max(0px, env(safe-area-inset-left))) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    header {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* Responsive hardening */
@media (max-width: 1100px) {
    header nav {
        width: min(100%, calc(100% - 2.5rem));
        gap: 18px;
    }

    header nav .menu ul {
        gap: 16px;
        font-size: 15px;
    }

    header nav .nav-buttons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    header nav .btn-agendar {
        padding-inline: 18px;
    }

    .ja-socio-box {
        gap: 16px;
        padding: 18px 20px;
    }

    .btn-acesso-socio {
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    header nav {
        width: min(100%, calc(100% - 1.5rem));
    }

    .banner-slides {
        aspect-ratio: 16 / 11;
    }

    .hero-content {
        max-width: min(100%, 38rem);
    }

    .patrocinadores-container,
    .destaques-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-contact-quick {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header nav {
        width: min(100%, calc(100% - 1rem));
    }

    header nav .menu.active {
        max-height: calc(100svh - 60px);
        overflow-y: auto;
    }

    .banner-slides {
        max-width: none;
        aspect-ratio: 4 / 5;
    }

    .jogadores-container,
    .comissao-container {
        scroll-padding-left: 16px;
        padding-bottom: 8px;
    }

    .ja-socio-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .ja-socio-content {
        justify-content: center;
    }

    .btn-acesso-socio {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .hero-content {
        max-width: 100%;
    }

    .patrocinadores-carousel::before,
    .patrocinadores-carousel::after {
        width: 48px;
    }

    .patrocinador-item {
        width: 140px;
        height: 84px;
        padding: 16px;
    }

    .social-media,
    .social-media-large {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-section,
    .footer-section ul,
    .footer-section p {
        min-width: 0;
    }
}

.mobile-header-actions {
    display: none;
}

@media (max-width: 768px) {
    #main-content {
        display: flex;
        flex-direction: column;
    }

    #main-content > #home {
        order: 1;
    }

    #main-content > .cta-socio-apoiador {
        display: none;
    }

    #main-content > .patrocinadores-carousel {
        order: 3;
    }

    #main-content > .home-main-sections {
        order: 4;
    }

    #main-content > #depoimentos {
        order: 5;
    }

    #main-content > #planos {
        order: 6;
    }

    header nav {
        gap: 0.75rem;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .mobile-header-cta {
        min-height: 40px;
        padding: 0 16px;
        border-radius: 999px;
        background: #ffffff;
        color: var(--vermelho-primario);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        white-space: nowrap;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    }

    header nav .hamburger {
        flex-shrink: 0;
    }

    .patrocinadores-carousel {
        padding: 26px 0 20px;
    }

    .patrocinadores-carousel::before,
    .patrocinadores-carousel::after {
        width: 40px;
    }

    .patrocinadores-container h3 {
        margin-bottom: 20px;
        font-size: 1.05rem;
        letter-spacing: 0.08em;
    }

    .patrocinadores-container h3::before,
    .patrocinadores-container h3::after {
        width: 24px;
    }

    .patrocinadores-track {
        gap: 24px;
        animation-duration: 22s;
    }

    .patrocinador-item {
        width: 132px;
        height: 72px;
        padding: 14px;
        border-radius: 14px;
    }

    .destaques-section {
        padding: 28px 12px;
    }

    .destaques-titulo {
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 1.2rem;
    }

    .destaques-titulo::after {
        width: 56px;
    }

    .bento-grid-noticias {
        gap: 14px;
        margin-bottom: 28px;
    }

    .bento-grid-noticias .bento-item:nth-child(n+4) {
        display: none;
    }

    .bento-item {
        height: 250px;
        border-radius: 20px;
    }

    .bento-content {
        padding: 18px;
    }

    .bento-date {
        margin-bottom: 10px;
    }

    .bento-resumo {
        font-size: 1rem;
    }

    .destaques-botao-container {
        margin-top: 30px;
    }

    .sobre-simples {
        padding: 36px 16px !important;
    }

    .sobre-content-centralizado {
        gap: 20px;
    }

    .sobre-simples .sobre-content-centralizado .sobre-texto h2 {
        margin-bottom: 16px;
    }

    .sobre-simples p {
        margin-bottom: 18px;
        font-size: 1rem;
        line-height: 1.7;
    }

    .sobre-logo {
        display: none;
    }

    section#categorias {
        padding: 26px 4%;
    }

    section#categorias h2 {
        margin-bottom: 18px;
    }

    .card {
        padding: 18px 18px 16px;
    }

    .card h3 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .detalhes-content {
        padding: 12px;
    }

    .detalhe-item {
        padding: 8px 0;
    }

    .time-profissional {
        padding: 44px 4%;
    }

    .profissional-title {
        margin-bottom: 28px;
    }

    .profissional-categorias {
        gap: 18px !important;
        margin-bottom: 20px !important;
    }

    .profissional-tabs {
        gap: 10px;
        margin-bottom: 24px;
        padding: 0;
    }

    .tab-btn {
        flex: 1 1 0;
        padding: 11px 14px;
        font-size: 0.92rem;
    }

    .posicao-filtros {
        gap: 10px;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .filtro-btn {
        min-height: 40px;
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .jogadores-container,
    .comissao-container {
        gap: 12px !important;
        padding: 16px !important;
    }

    .campeonatos-section {
        margin-top: 32px;
        padding: 0;
    }

    .campeonatos-section h3 {
        margin-bottom: 20px;
    }

    .campeonatos-grid {
        gap: 14px;
        padding: 12px 4px 8px;
    }

    .campeonato-card {
        padding: 20px 18px;
    }

    .planos {
        padding: 2.75rem 4%;
    }

    .planos-header {
        margin-bottom: 22px;
    }

    .ja-socio-box {
        margin-top: 20px;
        padding: 16px 18px;
    }

    .planos-container {
        gap: 1.1rem;
        padding: 0 0.35rem;
    }

    .plano-card {
        padding: 1.2rem 1rem;
        gap: 0.65rem;
    }

    .plano-card h3 {
        font-size: 1.35rem;
    }

    .preco-por {
        font-size: 2.2rem;
    }

    .parcelamento {
        min-height: auto;
        height: auto;
        padding: 0.7rem;
    }

    .plano-beneficios {
        gap: 0.35rem;
    }

    .plano-beneficios li {
        padding: 0.45rem 0;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .mobile-header-cta {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .patrocinadores-carousel {
        padding: 20px 0 16px;
    }

    .patrocinadores-container h3 {
        font-size: 0.95rem;
    }

    .patrocinador-item {
        width: 116px;
        height: 64px;
        padding: 12px;
    }

    .destaques-section {
        padding: 24px 10px;
    }

    .bento-item {
        height: 228px;
    }

    .bento-content {
        padding: 16px;
    }

    .sobre-simples {
        padding: 30px 14px !important;
    }

    .time-profissional {
        padding: 38px 4%;
    }

    .tab-btn {
        gap: 6px;
        font-size: 0.84rem;
    }

    .campeonatos-grid {
        gap: 12px;
        padding: 10px 2px 8px;
        scroll-snap-type: x mandatory;
    }

    .campeonato-card {
        min-width: 82vw;
        flex-basis: 82vw;
        padding: 18px 16px;
    }

    .planos {
        padding: 2.4rem 4%;
    }

    .plano-card {
        padding: 1.05rem 0.95rem;
    }

    .plano-card h3 {
        font-size: 1.25rem;
    }

    .preco-por {
        font-size: 2rem;
    }
}

@media (max-width: 360px) {
    .mobile-header-cta {
        min-width: 0;
        padding: 0 12px;
    }
}

/* Notebook landscape hardening */
@media (min-width: 1366px) and (max-width: 1600px) and (min-height: 700px) and (max-height: 820px) {
    :root {
        --fs-h1: clamp(2.1rem, 4vw, 2.8rem);
        --fs-h2: clamp(1.7rem, 3vw, 2.2rem);
        --fs-h3: clamp(1.15rem, 2vw, 1.45rem);
        --fs-large: clamp(1rem, 1.8vw, 1.15rem);
    }

    section {
        padding-top: clamp(3rem, 7vh, 4rem);
        padding-bottom: clamp(3rem, 7vh, 4rem);
    }

    .banner-slides {
        max-width: min(100%, 1280px);
        aspect-ratio: 18 / 8;
    }

    .hero {
        min-height: calc(100vh - 60px);
        padding-top: clamp(2.5rem, 5vh, 3.5rem);
        padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
    }

    .hero-content {
        max-width: min(100%, 48rem);
    }

    .hero-content h1 {
        font-size: clamp(2.35rem, 4vw, 3rem);
    }

    .hero-content p {
        font-size: clamp(1rem, 1.7vw, 1.125rem);
        max-width: 40rem;
    }

    .destaques-section {
        padding: 56px 24px;
    }

    .bento-grid-noticias {
        gap: 20px;
    }

    .bento-item {
        border-radius: 22px;
    }

    .bento-item-2,
    .bento-item-3,
    .bento-item-4,
    .bento-item-5 {
        height: 280px;
    }

    .bento-item-6 {
        height: 240px;
    }

    .bento-content {
        padding: 24px;
    }

    .bento-item-1 .bento-content {
        padding: 32px;
    }

    .bento-item-1 .bento-resumo {
        font-size: clamp(1.5rem, 2.6vw, 2rem);
    }

    .destaque-card-principal .destaque-link,
    .destaque-card-principal .destaque-imagem {
        height: 560px;
    }

    .destaque-card-secundario .destaque-link,
    .destaque-card-secundario .destaque-imagem {
        height: 300px;
    }

    .destaque-card-terciario .destaque-link,
    .destaque-card-terciario .destaque-imagem {
        height: 250px;
    }

    .destaque-chamada {
        width: min(100% - 24px, 82%);
        padding: 20px;
    }

    .planos {
        padding: 3.5rem 4%;
    }

    .planos-header {
        margin-bottom: 24px;
    }

    .planos-container {
        max-width: 1180px;
        gap: 1rem;
        padding-inline: 0.75rem;
    }

    .ja-socio-box {
        margin-top: 24px;
        max-width: 560px;
        padding: 18px 24px;
    }

    .plano-card {
        padding: 1.1rem 1rem;
    }

    .plano-destaque,
    .plano-diamante,
    .plano-destaque:hover,
    .plano-diamante:hover {
        transform: none;
    }

    .preco-por {
        font-size: clamp(2rem, 3.2vw, 2.35rem);
    }

    .parcelamento {
        min-height: auto;
        height: auto;
        padding: 0.75rem;
    }

    .plano-beneficios li {
        padding-block: 0.55rem;
    }

    .campeonatos-grid {
        gap: 16px;
    }

    .footer-content {
        gap: 28px;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .planos-container,
    .bento-grid-noticias,
    .footer-content {
        min-width: 0;
    }

    .planos-container {
        padding-inline: 0.5rem;
    }

    .plano-card,
    .jogador-card,
    .campeonato-card {
        min-width: 0;
    }

    .parcelamento,
    .plano-beneficios li {
        word-break: break-word;
    }
}
