:root {
    --fonte-principal: 'Lato', sans-serif;
    --vermelho-primario: #eb3835;
    --azul-secundario: #111D69;
    --branco-padrao: #FFFFFF;

    /* Tamanhos fluidos - reduzidos para notebooks */
    --fs-h1: clamp(1.75rem, 4vw, 2.75rem);
    --fs-h2: clamp(1.5rem, 3.5vw, 2.125rem);
    --fs-h3: clamp(1.1rem, 2.5vw, 1.3rem);
    --fs-body: clamp(0.875rem, 1.8vw, 0.95rem);
    --fs-large: clamp(0.95rem, 2.2vw, 1.1rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte-principal);
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--branco-padrao);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* 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 img {
    height: clamp(45px, 9vw, 60px);
    width: clamp(45px, 9vw, 60px);
    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(20px, 4vw, 55px);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    header nav .menu ul {
        gap: 30px;
        font-size: 18px;
    }
}

header nav .menu ul li a {
    color: var(--branco-padrao);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

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 {
    padding: 10px 20px;
    background-color: var(--branco-padrao);
    color: var(--vermelho-primario);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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 */
@media (max-width: 768px) {
    header nav .menu {
        display: none;
    }

    header nav .hamburger {
        display: flex;
    }

    header nav .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        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);
    }

    header nav .menu.active ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
    }

    header nav .menu.active ul li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    header nav .menu.active ul li:last-child {
        border-bottom: none;
    }

    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;
    }

    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(40px, 8vh, 60px) 5%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding: 30px 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;
    }
}

/* 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: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
    padding: 20px;
}

.hero-content h1 {
    font-size: var(--fs-h1);
    font-weight: 900;
    color: var(--branco-padrao);
    margin-bottom: clamp(15px, 3vh, 20px);
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.3;
    }
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--branco-padrao);
    margin-bottom: clamp(20px, 4vh, 30px);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-content p {
        font-size: clamp(0.95rem, 4vw, 1.125rem);
    }
}

.btn-hero {
    display: inline-block;
    padding: clamp(12px, 2vh, 16px) clamp(32px, 6vw, 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;
}

.btn-hero:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.35);
}

.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: 100vh;
    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: 600px;
    height: clamp(250px, 40vw, 400px);
    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;
}

.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);
}

.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: 20px 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: 15px;
    }

    .card {
        padding: 20px;
    }

    .card-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* 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 Notícias */
.noticias {
    padding: clamp(35px, 7vh, 50px) 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.noticias-header {
    text-align: center;
    margin-bottom: 35px;
}

.noticias-header h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--azul-secundario);
    margin-bottom: 15px;
}

.noticias-header p {
    font-size: var(--fs-large);
    color: #666;
    font-weight: 300;
}

.noticias-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.noticias-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.noticia-card {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: absolute;
    width: 100%;
    visibility: hidden;
}

.noticia-card.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

.noticia-imagem {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Faixa de Patrocinadores Animada */
.patrocinadores-faixa {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.patrocinadores-track {
    display: flex;
    gap: 30px;
    animation: scrollPatrocinadores 20s linear infinite;
    width: max-content;
}

.patrocinadores-track img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.patrocinadores-track img:hover {
    opacity: 1;
}

@keyframes scrollPatrocinadores {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.noticia-categoria {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    background: var(--vermelho-primario);
    color: white;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.noticia-data {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--azul-secundario);
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.noticia-data i {
    color: var(--vermelho-primario);
}

.noticia-conteudo {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.noticia-conteudo h3 {
    font-size: 1.5rem;
    color: var(--azul-secundario);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.noticia-resumo {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-noticia {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--vermelho-primario);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(235, 56, 53, 0.25);
    width: fit-content;
}

.btn-noticia:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.35);
}

.btn-noticia i {
    transition: transform 0.3s ease;
}

.btn-noticia:hover i {
    transform: translateX(4px);
}

/* Navegação do Carrossel */
.carousel-nav {
    position: absolute;
    top: 200px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--azul-secundario);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--vermelho-primario);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(235, 56, 53, 0.3);
}

.prev-noticia {
    left: 0;
}

.next-noticia {
    right: 0;
}

/* Indicadores de Slides */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--vermelho-primario);
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--azul-secundario);
}

/* Responsivo */
@media (max-width: 968px) {
    .noticia-card {
        grid-template-columns: 1fr;
    }

    .noticia-imagem {
        min-height: 350px;
    }

    .noticias-carousel {
        padding: 0 50px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .noticias {
        padding: 40px 5%;
    }

    .noticias-header {
        margin-bottom: 35px;
    }

    .noticias-carousel {
        padding: 0;
    }

    .noticia-imagem {
        min-height: 280px;
    }

    .noticia-conteudo {
        padding: 30px 25px;
    }

    .noticia-conteudo h3 {
        font-size: 1.4rem;
    }

    .noticia-resumo {
        font-size: 0.95rem;
    }

    .carousel-nav {
        display: none;
    }

    .patrocinadores-track img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .noticia-conteudo {
        padding: 25px 20px;
    }

    .noticia-conteudo h3 {
        font-size: 1.2rem;
    }

    .btn-noticia {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .patrocinadores-faixa {
        bottom: 20px;
        padding: 10px 0;
    }

    .patrocinadores-track {
        gap: 30px;
    }

    .patrocinadores-track img {
        height: 28px;
    }
}

/* 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: 432px) {
    footer {
        padding: 18px 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);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 432px) {
    .footer-content {
        gap: 12px;
        padding-bottom: 12px;
    }
}

.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-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(15px, 3vh, 30px) 0;
}

@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: repeat(2, 1fr);
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .social-media {
        justify-content: center;
    }

    .contact-item {
        text-align: left;
    }
}

@media (max-width: 432px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 15px;
        text-align: center;
    }

    .footer-section:nth-child(2) {
        display: none;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer-section p,
    .contact-item p {
        font-size: 0.8rem;
    }

    .footer-section ul li a {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }

    .footer-logo img {
        width: 50px;
        height: 50px;
    }

    .footer-logo h3 {
        font-size: 1.1rem;
    }

    .footer-section:first-child p {
        margin-bottom: 15px;
    }

    .social-media {
        gap: 12px;
    }

    .social-media a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .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;
        -webkit-overflow-scrolling: touch;
    }
}

/* 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)) {
    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.85em;
        padding: 8px 0;
    }

    .detalhes-content {
        padding: 12px;
    }
}

/* 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-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;
}

/* Seção Elenco */
.elenco-section {
    margin-top: 0;
}

.jogadores-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.jogadores-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -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: 10px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.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: 10px 20px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filtro-btn i {
    font-size: 1.1em;
}

.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);
}

.filtro-btn.active:hover {
    background: #d42f2c;
    transform: translateY(-2px);
}

.jogador-card {
    flex: 0 0 240px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    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);
    display: flex;
    flex-direction: column;
}

.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: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--azul-secundario) 0%, #0a1234 100%);
}

.jogador-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    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 50px;
    }

    .filtro-btn {
        padding: 10px 18px;
        font-size: 0.85em;
    }

    .jogador-card {
        flex: 0 0 240px;
    }

    .jogador-foto {
        height: 280px;
    }

    .jogador-info {
        padding: 16px;
    }

    .jogador-numero {
        min-width: 45px;
        height: 45px;
        font-size: 1.3em;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .jogadores-carousel {
        padding: 0 45px;
    }

    .posicao-filtros {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filtro-btn {
        padding: 8px 14px;
        font-size: 0.8em;
        flex: 1 1 auto;
        min-width: calc(50% - 4px);
    }

    .jogador-card {
        flex: 0 0 220px;
    }

    .jogador-foto {
        height: 260px;
    }

    .jogador-info {
        padding: 14px;
    }

    .jogador-card h4 {
        font-size: 1.1em;
    }

    .jogador-posicao {
        font-size: 0.85em;
    }

    .jogador-numero {
        min-width: 40px;
        height: 40px;
        font-size: 1.2em;
        top: 12px;
        right: 12px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

/* Seção Campeonatos */
.campeonatos-section {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.campeonatos-section h3 {
    text-align: center;
    font-size: 1.75em;
    margin-bottom: 30px;
    font-weight: 700;
}

.campeonatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.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);
}

.campeonato-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--vermelho-primario);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.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 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .campeonato-card {
        padding: 25px 20px;
    }

    .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;
}

.planos-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 420px));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.plano-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho-primario), var(--azul-secundario));
}

.plano-card:hover {
    transform: translateY(-6px);
    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 var(--vermelho-primario);
    box-shadow: 0 8px 32px rgba(235, 56, 53, 0.15);
}

.plano-destaque::before {
    height: 8px;
}

.plano-destaque:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 12px 40px rgba(235, 56, 53, 0.2);
}

/* Badge do Plano */
.plano-badge {
    display: inline-block;
    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);
}

.badge-elite {
    background: var(--azul-secundario);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.plano-card h3 {
    font-size: 1.3em;
    color: var(--azul-secundario);
    margin-bottom: 8px;
    font-weight: 700;
}

/* Preços */
.plano-preco {
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.preco-de {
    font-size: 1.1em;
    color: #999;
    text-decoration: line-through;
    font-weight: 300;
}

.preco-por {
    font-size: 2.2em;
    color: var(--vermelho-primario);
    font-weight: 800;
    line-height: 1;
}

.preco-mes {
    font-size: 0.4em;
    color: #666;
    font-weight: 400;
}

/* Parcelamento */
.parcelamento {
    text-align: center;
    color: #666;
    font-size: 0.8em;
    margin-bottom: 10px;
    padding: 6px;
    background: #f5f5f5;
    border-radius: 8px;
}

.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: 6px 10px;
    border-radius: 8px;
    font-size: 0.75em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    animation: none;
    border: 1px solid rgba(235, 56, 53, 0.2);
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

.economia-tag i {
    margin-right: 5px;
}

/* Benefícios */
.plano-beneficios {
    list-style: none;
    margin: 10px 0;
    flex-grow: 1;
}

.plano-beneficios li {
    padding: 6px 0;
    font-size: 0.82em;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.plano-beneficios li:last-child {
    border-bottom: none;
}

.plano-beneficios i {
    font-size: 1.1em;
    min-width: 20px;
}

.plano-beneficios .fa-check {
    color: #4CAF50;
}

.plano-beneficios .fa-times {
    color: #ccc;
}

/* Botões dos Planos */
.btn-plano {
    display: block;
    padding: 12px 26px;
    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: 0.95em;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-plano:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-plano-destaque {
    background: linear-gradient(135deg, var(--vermelho-primario) 0%, #c62828 100%);
    font-size: 1em;
    animation: none;
    box-shadow: 0 4px 15px rgba(235, 56, 53, 0.4);
}

@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 */
@media (max-width: 1024px) {
    .plano-destaque {
        transform: scale(1);
    }

    .plano-destaque:hover {
        transform: scale(1.02) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .planos {
        padding: 60px 5%;
    }

    .planos-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .plano-card {
        padding: 25px 20px;
    }

    .plano-destaque {
        transform: scale(1);
    }

    .preco-por {
        font-size: 2.5em;
    }
    
    /* Melhorias para touch */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn-plano {
        padding: 16px 32px;
    }
}

@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;
    }
}

/* Melhorias de performance */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    a, button, .clickable {
        min-height: 44px;
        min-width: 44px;
    }
}

/* GPU acceleration for animations */
.plano-card,
.btn-plano,
.noticia-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Lazy Loading Styles */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.lazy-loading {
    opacity: 0.6;
    filter: blur(5px);
    transition: opacity 0.3s, filter 0.3s;
}

.lazy-loaded {
    opacity: 1;
    filter: blur(0);
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lazy-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
}

.lazy-hidden {
    opacity: 0;
    visibility: hidden;
}

.lazy-visible {
    opacity: 1;
    visibility: visible;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}