/* General Styling */
:root {
    --primary-red: #D20000;
    --dark-grey: #222;
    --light-grey: #f4f4f4;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--white);
    background-color: var(--black);
}

/* Header/Navbar */
/* Header/Navbar */
/* Header/Navbar */
.header {
    position: fixed; /* Mudei de absolute para fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9); /* Aumentei a opacidade */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); /* Adiciona efeito de blur */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Limita a largura do conteúdo interno */
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 20px 50px; /* Espaçamento interno */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
}

.logo img {
    height: 40px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--primary-red);
}

.specialist-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.specialist-button:hover {
    background-color: #A00000;
}
/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 50px;
    color: var(--white);
    overflow: hidden;
} 

.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/img1.jpg');
}

.hero-bg-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/img2.jpg');
}

.hero-bg-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/img3.jpg');
}
 

.hero-bg-slide:nth-child(4) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/img4.jpeg');
}

.hero-bg-slide:nth-child(5) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/img5.jpeg');
}





.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse; /* Adicione esta linha para inverter a ordem */
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    margin-right: auto;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.highlight {
    color: var(--primary-red);
}

.cta-button {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, border-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--dark-grey);
}

/* Address Box */
/* Address Box */
/* Address Box */
.address-box {
    background-color: var(--white);
    color: var(--black);
    padding: 20px 30px; /* Aumentei o padding */
    border-radius: 5px;
    position: absolute;
    bottom: 30px;
    right: 50px;
    max-width: 350px; /* Aumentei de 300px para 350px */
    text-align: left;
    font-size: 1rem; /* Aumentei de 0.9rem para 1rem */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.address-box p {
    margin: 0;
    line-height: 1.4; /* Melhor espaçamento entre linhas */
}

.address-box p {
    margin: 0;
}

/* --- Seção de Cards --- */
.secondary-section {
    width: 100%;
    background-color: var(--black);
    
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    flex: 1;
    position: relative;
    color: var(--white);
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.card-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background images for each card */
.card:nth-child(1) .card-image-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/luta.png');
}

.card:nth-child(2) .card-image-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.png');
}

.card:nth-child(3) .card-image-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.png');
}

.card:nth-child(4) .card-image-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/7.png');
}

.card-image-box img {
    display: none; /* Hide the img tag since we're using background images */
}

.card-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    color: var(--white);
}

.card-subtitle {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Bloco Vermelho --- */
.red-block {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 200px 50px;
    text-align: center;
}

.red-block-content {
    max-width: 800px;
    margin: 0 auto;
}

.red-block-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.red-block-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.red-block-button {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
    padding: 15px 40px;
    border: 2px solid var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.red-block-button:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* --- Menu Hambúrguer (Mobile) --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

/* --- Seção de Modalidades Simples (Imagem e Título) --- */
.modalidades-section {
    width: 100%;
    background-color: var(--black);
    padding: 0;
}

.modalidades-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 500px;
}

.modalidades-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.modalidades-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modalidades-text {
    width: 50%;
    text-align: center;
    padding: 20px;
}

.modalidades-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
}

/* --- Seção de Cards de Modalidades (Grid) - AJUSTADA --- */
.modalities-grid {
    width: 100%;
    background-color: var(--black);
    padding: 50px;
}

.modalities-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modality-card {
    background-color: var(--black);
    border: 2px solid var(--primary-red);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.modality-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85); /* MUDANÇA: De 0.4 para 0.85 - imagem muito mais clara */
    z-index: 1;
}

.modality-content {
    position: relative;
    z-index: 2;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    /* MUDANÇA: Gradiente mais suave e apenas na parte inferior */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 70%);
    height: auto;
    justify-content: flex-end;
    flex-grow: 1;
    align-items: center;
}

.modality-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra mais forte no texto */
}

.modality-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Sombra mais forte no texto */
}

.modality-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    margin: 10px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modality-button:hover {
    background-color: #A00000;
}

/* --- Seção de Chamada para Ação (CTA) --- */
.call-to-action {
    width: 100%;
    background-color: var(--black);
    padding: 0;
}

.cta-content-wrapper {
    display: flex;
    max-width: 100%; /* Ocupa toda a largura da tela */
    margin: 0;
    gap: 0; /* Remove o espaçamento */
    height: 500px; /* Define uma altura fixa para toda a wrapper da seção */
}

.cta-red-block {
    position: relative;
    background-color: var(--primary-red);
    color: var(--white);
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinha o conteúdo (texto e botão) ao final */
    align-items: flex-start; /* Alinha o conteúdo à esquerda */
}

.cta-text h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-align: left;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
}

.cta-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px; /* Espaçamento menor */
    text-align: left; /* Garante alinhamento à esquerda */
    max-width: 70%; /* Limita a largura do parágrafo */
    z-index: 2; /* Garante que o texto fique acima da imagem dos lutadores */
    position: relative; /* Necessário para z-index funcionar */
}

.cta-red-button {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 40px;
    border: none; /* Removendo a borda branca */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 2; /* Garante que o botão fique acima da imagem dos lutadores */
    position: relative; /* Necessário para z-index funcionar */
}

.cta-red-button:hover {
    background-color: var(--dark-grey);
}

.cta-image-middle {
    position: absolute;
    bottom: 0; /* Alinha a base da imagem com a parte inferior do bloco vermelho */
    right: -100px; /* Ajuste para centralizar visualmente na junção */
    width: 400px; /* Aumentei o tamanho da imagem para ela ter mais destaque */
    height: auto;
    z-index: 1; /* Garante que fique atrás do texto e botão */
}

.cta-image-middle img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que a imagem se ajuste sem cortar */
}

.cta-image-right {
    flex: 1;
    overflow: hidden;
    height: 100%; /* Garante que a imagem ocupe toda a altura */
}

.cta-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Seção de Depoimentos --- */
.testimonials-section {
    width: 100%;
    background-color: var(--black);
    padding: 50px 0;
}

.testimonials-container {
    max-width: 100%; /* Ocupa toda a largura da tela */
    margin: 0 auto;
    padding: 0 50px; /* Mantém o espaçamento nas laterais do conteúdo */
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 40px;
}

/* Slick Carousel Customization */
.testimonials-carousel {
    /* Não precisa de margin aqui, o padding do container já resolve */
}

.testimonial-card {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    display: flex !important; /* Important para sobrepor o display block do slick */
    flex-direction: column;
    height: 300px; /* Definindo uma altura fixa para todos os cards */
    margin: 10px; /* Espaçamento entre os cards no carrossel */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 15px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--white);
}

.stars {
    color: gold;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1; /* Permite que o texto ocupe o espaço disponível e force a altura igual */
    overflow-y: auto; /* Adiciona scroll se o texto for muito longo */
    margin-top: 10px; /* Espaço entre as estrelas e o texto */
}

/* Slick Carousel Arrows and Dots */
.slick-prev, .slick-next {
    font-size: 0; /* Oculta o texto padrão */
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 10;
}

.slick-prev:before, .slick-next:before {
    font-family: "Font Awesome 6 Free"; /* Usa Font Awesome para ícones */
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    color: var(--primary-red);
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: #A00000;
}

.slick-prev:before {
    content: "\f053"; /* Ícone de seta para a esquerda */
}
.slick-next:before {
    content: "\f054"; /* Ícone de seta para a direita */
}

.slick-prev {
    left: 15px; /* Ajusta a posição da seta esquerda para dentro do padding */
}
.slick-next {
    right: 15px; /* Ajusta a posição da seta direita para dentro do padding */
}

/* Slick Dots */
.slick-dots {
    position: absolute;
    bottom: -30px; /* Posição das bolinhas de navegação */
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ccc;
    border-radius: 50%;
    opacity: 0.75;
    transition: background 0.3s;
}

.slick-dots li.slick-active button {
    background: var(--primary-red);
    opacity: 1;
}


/* --- Footer --- */
.footer {
    background-color: #202020;
    color: var(--white);
    padding: 50px  0  20px;
    width: 100%; /* Garante que o footer ocupe a largura total da tela */
}

.footer-container {
     /* Limita a largura do conteúdo interno */
    margin: 0 auto; /* Centraliza o conteúdo */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px 50px; /* Adiciona o padding lateral para o conteúdo */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-col-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-col-1 .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col-1 .logo img {
    height: 40px;
}

.footer-col-1 .logo span {
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-red);
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: var(--primary-red);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
    align-items: flex-end;
}

.footer-hours span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    gap: 20px;
}

.footer-contact a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-address p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}


/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 70px; /* Aumentei de 60px para 70px */
    height: 70px; /* Aumentei de 60px para 70px */
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px; /* Aumentei de 30px para 35px */
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Ajuste para o corpo da página não ficar atrás do header fixo - APENAS NO DESKTOP */
body {
    padding-top: 80px;
}

/* Ajuste para o corpo da página não ficar atrás do header fixo */
body {
    padding-top: 80px; /* Ajuste conforme a altura do seu header */
}


/* --- Media Queries para Mobile/Tablet --- */
@media (max-width: 768px) {
    /* --- Header e Menu --- */
    .header {
        position: relative;
        background-color: var(--black);
    }
    .header-container {
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
    }
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        z-index: 999;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
    }
    .navbar.active {
        display: flex;
        transform: translateY(0);
    }
    .navbar ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .menu-toggle {
        display: block;
    }
    .specialist-button {
        padding: 10px 20px;
        margin-top: 20px;
    }
    
    /* --- Hero Section (Seção Principal) --- */
   /* --- Hero Section (Seção Principal) --- */
/* --- Hero Section (Seção Principal) --- */
/* --- Hero Section (Seção Principal) --- */
.hero-section {
    height: 70vh;
    padding: 20px;
    text-align: center;
    background-position: center top;
    justify-content: space-between; /* Mudei de flex-end para space-between */
    align-items: center;
    flex-direction: column;
    padding-bottom: 40px;
    padding-top: 10px; /* Adiciona espaço do topo para não ficar atrás do header */
}

.hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 0;
    padding: 0;
    order: 1;
    display: flex;
    
}

.hero-text {
    order: 1; /* Texto vai para o topo */
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-button {
    font-size: 0.8rem;
    padding: 12px 25px;
    margin-bottom: 0;
    order: 2; /* Botão fica abaixo do texto */
}

.address-box {
    position: static;
    text-align: center;
    margin-top: 0;
    bottom: auto;
    right: auto;
    max-width: 95%;
    background-color: var(--white);
    color: var(--black);
    order: 2;
    margin-bottom: 0;
    padding: 18px 25px;
    font-size: 0.95rem;
}
    /* --- Seção de Cards --- */
    .secondary-section {
        padding: 0 20px;
    }
     .cards-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
    }
    
    .card {
        min-height: 150px;
    }
    
    .card-text {
        padding: 20px 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .card-subtitle {
        font-size: 1.4rem;
    }
  
    
    
    /* --- Bloco Vermelho --- */
    .red-block {
        padding: 50px 100px;
        text-align: center;
    }
    .red-block-content {
        max-width: 100%;
    }
    .red-block-title {
        font-size: 2rem;
    }
    .red-block-text {
        font-size: 1rem;
    }

    /* --- Seção de Modalidades Simples (Imagem e Título) --- */
    .modalidades-content {
        flex-direction: column;
        height: auto;
    }
    .modalidades-image {
        width: 100%;
        height: 250px;
    }
    .modalidades-text {
        width: 100%;
        padding: 40px 20px;
    }
    .modalidades-title {
        font-size: 2.5rem;
    }

    /* --- Seção de Cards de Modalidades (Grid) - AJUSTADA PARA MOBILE --- */
   
    .modalities-grid {
        padding: 30px 20px;
    }
    .modalities-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modality-card {
        height: 450px; /* Aumentei de 350px para 450px */
    }
    .modality-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Alinha conteúdo na parte inferior */
        padding: 30px 20px; /* Aumentei o padding */
        /* Gradiente mais suave para mobile */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 80%);
    }
    .modality-title {
        margin-bottom: 15px; /* Mais espaço entre título e botão */
    }
    .modality-button {
        margin: 15px 0; /* Mais espaço em volta do botão */
    }
    .modality-description {
        margin-top: 15px;
        margin-bottom: 0;
        font-size: 0.95rem; /* Fonte ligeiramente maior */
        line-height: 1.5;
    }

    /* --- Seção de Chamada para Ação (CTA) --- */
    .cta-content-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .cta-red-block {
        padding: 40px 20px;
        text-align: center;
        order: 2;
        align-items: center;
    }

    .cta-text h3 {
        font-size: 1.8rem;
        text-align: center;
        max-width: 100%;
    }
    
    .cta-text p {
        font-size: 0.9rem;
        text-align: center;
        max-width: 90%;
    }

    .cta-red-button {
        display: inline-block;
        margin: 20px auto; /* Adicionando margem para separar do texto e da imagem */
    }

    .cta-image-middle {
        position: static;
        width: 80%;
        margin: 20px auto 0 auto; /* Ajustado para ficar abaixo do botão */
        display: block;
        order: 3; /* Move a imagem para o final */
    }

    .cta-image-middle img {
        width: 100%;
        height: auto;
    }

    .cta-image-right {
        height: 250px;
        order: 1; /* A imagem da academia fica no topo no mobile */
    }
    
    /* --- Seção de Depoimentos (Carrossel) --- */
    .testimonials-container {
        padding: 0 10px;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .testimonials-carousel {
        margin: 0;
    }
    .testimonial-card {
        margin: 10px auto;
        max-width: 90%;
        height: 280px;
    }
    .testimonial-text {
        overflow-y: auto;
    }
    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }
    .slick-prev:before, .slick-next:before {
        font-size: 24px;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next {
        right: 0px;
    }
    .slick-dots {
        bottom: -25px;
    }

   .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 20px 30px;
    }

    .footer-col-1 {
        align-items: center;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-info {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-contact {
        gap: 25px;
    }

    .footer-address {
        order: 3;
    }

    .footer-social-icons {
        order: 2;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }

    .red-block {
    padding: 50px 20px; /* Reduz o padding lateral para 20px */
    text-align: center;
}

.whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
}

body {
    padding-top: 90px; /* Ajuste para mobile */
}

.header {
    position: fixed; /* Mantém fixo */
    background-color: var(--black);
}
}
    /*