/* Hero Section e Carrossel */
.hero-section {
    position: relative;
    height: calc(100vh - 92px);
    min-height: 600px;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8; /* Adicionando opacidade nas imagens */
    transition: opacity 0.3s ease;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.hero-buttons {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Botão Comece Agora */
.btn-start {
    background-color: var(--verde);
    color: var(--roxo);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-start:hover,
.btn-start:focus,
.btn-start:active {
    background-color: #d1e048; /* Verde mais claro */
    color: var(--roxo) !important; /* Forçando a cor roxa */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 208, 56, 0.3);
    text-decoration: none;
}

/* Controles do Carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: transparent; /* Removendo background roxo */
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    background-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    border-color: #ffffff;
    transform: scale(1.1);
}

/* Indicadores do Carrossel */
.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255,255,255,0.5) !important;
    border: none !important;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--verde) !important;
    transform: scale(1.2);
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-start {
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 72px);
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        background-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 300px;
        height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .btn-start {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .carousel-caption {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
    .carousel-img {
        height: 180px;
        min-height: 180px;
        object-fit: cover;
    }
    .card, .plano-card, .produto-card {
        width: 100% !important;
        min-width: 0 !important;
        margin-bottom: 1.5rem;
    }
    .section-title {
        font-size: 1.2rem;
    }
    .navbar-brand img {
        height: 40px;
    }
    .coach-image img {
        width: 100%;
        height: auto !important;
        max-height: 250px;
        object-fit: contain !important;
        border-radius: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        background: #3a2960;
    }
    .coach-card-small img {
        width: 100%;
        height: auto !important;
        max-height: 180px;
        object-fit: cover;
        border-radius: 12px;
    }
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
    .whatsapp-button {
        width: 40px;
        height: 40px;
    }
    .whatsapp-button i {
        font-size: 20px;
    }
    .modalidade-card, .diferencial-card {
        padding: 1rem;
    }
    .features-list li {
        font-size: 0.95rem;
    }
    .planos-hero {
        padding: 3rem 0 2rem;
        margin-top: -60px;
    }
}

:root {
    --roxo: #4f3880;
    --roxo-escuro: #3a2960;
    --roxo-claro: #5f4890;
    --verde: #c1d038;
    --bg-primary: var(--roxo);
    --text-primary: var(--verde);
    --card-bg: var(--roxo);
    --border-color: var(--verde);
    /* Variáveis de espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    /* Variáveis de animação */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
}

/* Tema escuro */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --text-primary: #ffffff;
    --card-bg: #2a2a2a;
    --border-color: var(--roxo-claro);
}

/* Reset e configurações básicas */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 92px;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Navbar Moderna */
.navbar {
    background: var(--roxo);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    transition: height 0.3s ease;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    padding: 0.8rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* Responsivo */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
        background: var(--roxo) !important;
        border-radius: 0;
        margin: 0;
        width: 100% !important;
        left: 0;
        right: 0;
        position: fixed !important;
        top: 0;
        z-index: 1050 !important;
    }
    .navbar-brand img {
        height: 70px;
    }
    .navbar-collapse {
        background: var(--roxo);
        padding: 1rem;
        border-radius: 0;
        margin-top: 0;
        width: 100% !important;
        left: 0;
        right: 0;
        position: static;
        box-shadow: none;
    }
    .navbar-nav {
        gap: 0.3rem;
    }
    .nav-link {
        padding: 0.7rem 1rem !important;
    }
}

html, body {
    overflow-x: hidden;
}


@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }
}

/* Menu Mobile Offcanvas */
.offcanvas {
    background-color: var(--roxo);
    max-width: 300px;
}

.offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.offcanvas .btn-close {
    background-color: #fff;
    opacity: 0.8;
}

.offcanvas-body {
    padding: 1rem;
}

.offcanvas .navbar-nav {
    margin: 0;
    padding: 0;
}

.offcanvas .nav-item {
    margin: 0.5rem 0;
}

.offcanvas .nav-link {
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.offcanvas .nav-link.active {
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}

@media (max-width: 991px) {
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }
}

/* Padronização das fotos dos atletas nos depoimentos */
.depoimento-foto {
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.depoimento-foto img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 600px) {
  .depoimento-foto, .depoimento-foto img {
    width: 80px !important;
    height: 80px !important;
  }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    text-decoration: none !important;
    border-bottom: none !important;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    font-size: 32px;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
    text-decoration: none !important;
    border-bottom: none !important;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
}

/* Cards Modernos */
.card,
.plano-card,
.produto-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all var(--transition-normal);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover,
.plano-card:hover,
.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Botões Modernos */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300%;
    height: 300%;
}

/* Animações de Entrada */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

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

/* Media Queries */
@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }
    
    .navbar-brand img {
        height: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .modalidade-card,
    .diferencial-card {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Melhorias de Acessibilidade */
@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;
    }
}

.nav-link {
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--verde);
    transition: width var(--transition-normal), left var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--card-bg) 25%, var(--roxo-claro) 50%, var(--card-bg) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Seções */
section {
    background-color: var(--roxo);
    padding: 4rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--verde), transparent);
}

/* Cards */
.card,
.plano-card,
.produto-card {
    border: 1px solid var(--verde);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover,
.plano-card:hover,
.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--verde);
}

.card-body {
    background-color: var(--roxo);
    padding: 2rem;
}

/* Planos */
.plano-header {
    background-color: var(--roxo);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--verde);
    position: relative;
}

.plano-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--verde), transparent);
}

.plano-body {
    background-color: var(--roxo);
    padding: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: var(--verde);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.features-list li i {
    margin-right: 10px;
    color: var(--verde);
}

/* Produtos */
.produto-imagem {
    position: relative;
    overflow: hidden;
}

.produto-imagem img {
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(79, 56, 128, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produto-card:hover .produto-overlay {
    opacity: 1;
}

.produto-info {
    background-color: var(--roxo);
    padding: 1.5rem;
    text-align: center;
}

/* Seção Modalidades */
.modalidades-section {
    padding: 5rem 0;
    background-color: var(--roxo);
}

.modalidade-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--verde);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.modalidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modalidade-icon {
    font-size: 2.5rem;
    color: var(--verde);
    margin-bottom: 1.5rem;
}

.modalidade-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--verde);
}

/* Seção Diferenciais */
.diferenciais-section {
    padding: 5rem 0;
    background-color: var(--roxo);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--verde);
}

.diferencial-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--verde);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.diferencial-icon {
    font-size: 2.5rem;
    color: var(--verde);
    margin-bottom: 1.5rem;
}

.diferencial-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--verde);
}

/* Seção Parceiros */
.parceiros-section {
    padding: 4rem 0;
    background-color: var(--roxo);
}

.parceiro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: none;
    border: none;
    box-shadow: none;
    height: 160px;
}

.parceiro-logo img {
    max-height: 120px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.parceiro-logo:hover img {
    opacity: 1;
}

@media (max-width: 991px) {
    .parceiro-logo {
        height: 120px;
        padding: 1rem;
    }

    .parceiro-logo img {
        max-height: 80px;
    }
}

/* Botões */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plano-card .btn,
.contato-form .btn {
    background-color: var(--verde) !important;
    color: var(--roxo) !important;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.plano-card .btn:hover,
.contato-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 208, 56, 0.2);
    background-color: var(--verde) !important;
    color: var(--roxo) !important;
}

/* Remover qualquer estilo que possa estar sobrescrevendo */
.btn-light,
.btn-outline-light {
    background-color: var(--verde) !important;
    color: var(--roxo) !important;
    border: none !important;
}

/* Textos */
h1, h2, h3, h4, h5, h6,
.text-color {
    color: var(--verde) !important;
    margin-bottom: 1rem;
}

p, span, a {
    text-decoration: none !important;
    border-bottom: none !important;
    color: var(--verde) !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Mobile */
@media (max-width: 991px) {
    body {
        padding-top: 78px; /* Altura do menu mobile (76px) + borda (2px) */
    }

    .navbar-brand img {
        height: 76px;
    }

    .navbar-collapse {
        background-color: var(--roxo);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Página Nosso Time */
.sobre-equipe {
    background-color: var(--roxo);
    padding: 6rem 0;
    color: white;
}

.sobre-equipe .section-title {
    color: var(--verde);
    margin-bottom: 2rem;
}

.sobre-equipe img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.text-verde {
    color: var(--verde);
}

.coach-card {
    background: var(--roxo-claro);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coach-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.coach-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.coach-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--verde);
}

.coach-role {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.coach-credentials {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--verde);
}

.coach-credentials span {
    display: inline-block;
    margin-right: 1rem;
}

.coach-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.coach-achievements {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.coach-achievements h5 {
    color: var(--verde);
    margin-bottom: 1rem;
}

.coach-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coach-achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.coach-achievements li:before {
    content: "→";
    color: var(--verde);
    position: absolute;
    left: 0;
}

.coach-card-small {
    background: var(--roxo-claro);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    color: white;
    transition: transform 0.3s ease;
}

.coach-card-small:hover {
    transform: translateY(-5px);
}

.coach-card-small img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #3a2960;
}

.coach-card-small .coach-info {
    padding: 1.5rem;
}

.coach-card-small h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--verde);
}

.coach-card-small .coach-role {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.coach-card-small .coach-bio {
    font-size: 1rem;
    margin: 1rem 0;
}

.cta-section {
    background: linear-gradient(rgba(79, 56, 128, 0.95), rgba(79, 56, 128, 0.95)), url('../images/slider/triathlon-2440855_1920.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
}

@media (max-width: 991px) {
    .sobre-equipe {
        padding: 4rem 0;
    }

    .coach-image img {
        height: 300px;
    }

    .coach-card-small img {
        height: 180px;
    }

    .coach-info {
        padding: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 92px);
    min-height: 600px;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 2;
}

.caption-tag {
    display: inline-block;
    background-color: var(--verde);
    color: var(--roxo);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.hero-buttons {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Controles do Carrossel */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--roxo);
    background-size: 1.5rem;
    transition: transform 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover .carousel-control-prev-icon {
    transform: scale(1.1) translateX(-5px);
}

.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1) translateX(5px);
}

/* Indicadores do Carrossel */
.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    border: 2px solid var(--verde) !important;
    background-color: transparent !important;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--verde) !important;
    transform: scale(1.2);
    opacity: 1;
}

/* Animação de Fade para os Slides */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries para Responsividade */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 72px);
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        background-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .caption-tag {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.2rem;
        font-size: 1rem;
    }
}

/* Página de Planos */
.planos-hero {
    background: linear-gradient(rgba(79, 56, 128, 0.9), rgba(79, 56, 128, 0.9)), url('../images/slider/triathlon-2440855_1920.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 6rem;
    color: white;
    margin-top: -92px;
}

.planos-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.planos-grid {
    background-color: var(--roxo);
    color: white;
}

.plano-card {
    background: var(--roxo-claro);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-10px);
}

.plano-header {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plano-header h3 {
    color: var(--verde);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.featured {
    border: 2px solid var(--verde);
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--verde);
    color: var(--roxo);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 15px;
}

.price {
    margin: 1.5rem 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 0.2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde);
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list i {
    color: var(--verde);
    font-size: 1.2rem;
}

.beneficios {
    background-color: var(--roxo);
    color: white;
}

.beneficio-card {
    background: var(--roxo-claro);
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
}

.beneficio-card i {
    color: var(--verde);
}

.beneficio-card h4 {
    color: var(--verde);
    margin-bottom: 1rem;
}

.contato {
    background-color: var(--roxo);
    color: white;
}

.page-header {
    background: var(--roxo);
    padding: 120px 0 40px;
    margin-bottom: 30px;
}

.page-header h1 {
    color: white;
    font-size: 2rem;
    margin: 0;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--verde);
    width: 20px;
}

.social-links .btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
}

.contact-form {
    background: var(--verde);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-form h2 {
    color: var(--roxo);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-form .form-label {
    color: var(--roxo);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-form .form-control,
.contact-form .form-select {
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    color: var(--roxo);
    border: 1px solid rgba(79, 56, 128, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control::placeholder {
    color: rgba(79, 56, 128, 0.5);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--roxo);
    box-shadow: 0 0 0 0.2rem rgba(79, 56, 128, 0.1);
    background-color: white;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form .btn-primary {
    background: var(--roxo);
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    color: white;
}

.contact-form .btn-primary:hover {
    background: var(--roxo-escuro);
}

@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 30px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* Página de Calendário */
.calendario-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.calendario-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(79, 56, 128, 0.7); /* Cor roxa com transparência */
}

.calendario-hero .container {
    z-index: 2;
}

.calendario-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.calendario-hero .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .calendario-hero {
        height: 300px;
    }
    
    .calendario-hero h1 {
        font-size: 2.5rem;
    }
    
    .calendario-hero .lead {
        font-size: 1.1rem;
    }
}

.evento-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.evento-data {
    background: var(--verde);
    color: var(--roxo);
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evento-data .dia {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.evento-data .mes {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.evento-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.evento-info h3 {
    color: var(--roxo);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.evento-info .local {
    color: #666;
    margin-bottom: 0.5rem;
}

.evento-info .local i {
    color: var(--verde);
    margin-right: 0.5rem;
}

.evento-info .descricao {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.trimestre h2 {
    color: var(--roxo);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.trimestre h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--verde);
}

.suporte-eventos {
    background: var(--roxo);
    color: white;
}

.suporte-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.suporte-card:hover {
    transform: translateY(-5px);
}

.suporte-card i {
    color: var(--verde);
}

.suporte-card h3 {
    color: white;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.suporte-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .calendario-hero {
        margin-top: -78px;
        padding: 7rem 0 4rem;
    }
    
    .evento-card {
        flex-direction: column;
    }
    
    .evento-data {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        min-width: auto;
    }
    
    .evento-data .dia {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}

/* Página de Galeria */
.galeria-hero {
    position: relative;
    min-height: 380px;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: -92px;
}

.galeria-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}

.galeria-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 92px;
}

.galeria-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--verde);
}

.galeria-hero .lead {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.galeria-content {
    background-color: var(--roxo);
    padding: 5rem 0;
}

/* Cards de Fotos */
.foto-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.foto-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--roxo-escuro);
}

.foto-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.foto-card:hover .foto-image img {
    transform: scale(1.05);
    opacity: 1;
}

.foto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.foto-card:hover .foto-overlay {
    opacity: 1;
    transform: translateY(0);
}

.foto-categoria {
    display: inline-block;
    background: var(--verde);
    color: var(--roxo);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.foto-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.foto-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Modal */
.modal-content {
    background: transparent;
    border: none;
}

.modal .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background-color: #fff;
    opacity: 0.8;
    border-radius: 50%;
    padding: 0.5rem;
}

.modal .btn-close:hover {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .galeria-hero {
        min-height: 320px;
    }
    
    .galeria-hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .galeria-hero {
        min-height: 280px;
    }
    
    .galeria-hero h1 {
        font-size: 2rem;
    }
    
    .galeria-hero .lead {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .foto-overlay {
        padding: 1.5rem;
    }
    
    .foto-overlay h3 {
        font-size: 1.2rem;
    }
}

/* Página do Blog */
.blog-hero {
    position: relative;
    background: var(--roxo);
    padding: 9rem 0 6rem;
    color: #fff;
    z-index: 1;
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, var(--roxo) 49%, var(--roxo) 50%);
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--verde);
}

.blog-hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
    padding: 0 1rem;
}

/* Cards do Blog */
.blog-posts {
    background-color: var(--roxo);
    padding: 5rem 0;
}

.post-card {
    background: var(--roxo);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

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

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-category {
    display: inline-block;
    background: var(--verde);
    color: var(--roxo);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.post-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--verde);
    line-height: 1.4;
    font-weight: 700;
}

.post-excerpt {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 0.5rem;
    color: var(--verde);
}

.post-card .btn {
    align-self: flex-start;
    background: var(--verde);
    color: var(--roxo);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-card .btn:hover {
    background: #d1e048;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 992px) {
    .blog-hero {
        padding: 8rem 0 5rem;
    }
    
    .blog-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 7rem 0 4rem;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .blog-hero .lead {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
    
    .post-card h3 {
        font-size: 1.2rem;
    }
}

/* Cards de Fotos */
.foto-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.foto-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--roxo-escuro);
}

.foto-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.foto-card:hover .foto-image img {
    transform: scale(1.05);
    opacity: 1;
}

.foto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.foto-card:hover .foto-overlay {
    opacity: 1;
    transform: translateY(0);
}

.foto-categoria {
    display: inline-block;
    background: var(--verde);
    color: var(--roxo);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.foto-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.foto-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Modal */
.modal-content {
    background: transparent;
    border: none;
}

.modal .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background-color: #fff;
    opacity: 0.8;
    border-radius: 50%;
    padding: 0.5rem;
}

.modal .btn-close:hover {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .galeria-hero {
        padding: 9rem 0 5rem;
    }
    
    .galeria-hero h1 {
        font-size: 3rem;
    }
    
    .filtro-btn {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .galeria-hero {
        padding: 8rem 0 4rem;
    }
    
    .galeria-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .galeria-hero .lead {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
    
    .foto-overlay {
        padding: 1.5rem;
    }
    
    .foto-overlay h3 {
        font-size: 1.2rem;
    }
}

/* Página de Pontos de Treino */
.pontos-hero {
    position: relative;
    min-height: 380px;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: -92px;
}

.pontos-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}

.pontos-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 92px;
}

.pontos-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pontos-hero .lead {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.badge-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.badge-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.badge-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.pontos-content {
    background: var(--roxo);
    padding: 5rem 0;
}

.modalidade-treino {
    padding: 4rem 0;
}

.modalidade-treino:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.section-header {
    margin-bottom: 3rem;
    color: #fff;
}

.section-header h2 {
    font-size: 2.4rem;
    margin: 1rem 0;
    color: #fff;
}

.section-header .lead {
    color: rgba(255,255,255,0.8);
}

.modalidade-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.modalidade-badge i {
    margin-right: 0.5rem;
}

.local-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.local-card:hover {
    transform: translateY(-5px);
}

.local-imagem {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.local-imagem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.local-info {
    padding: 2rem;
    color: #fff;
}

.local-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.local-header h3 {
    font-size: 1.6rem;
    margin: 0;
    color: #fff;
}

.status-badge {
    margin-left: 1rem;
    padding: 0.3rem 1rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.endereco {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

.endereco i {
    margin-right: 0.8rem;
    opacity: 0.6;
}

.info-box {
    margin-bottom: 1.5rem;
}

.info-box h4 {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.info-box h4 i {
    margin-right: 0.5rem;
    opacity: 0.6;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.info-box ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-box ul li i {
    margin-right: 0.5rem;
    opacity: 0.6;
}

.info-box p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

@media (max-width: 991px) {
    .pontos-hero {
        margin-top: 0;
        padding-top: 120px;
        min-height: 320px;
    }
    
    .pontos-hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .pontos-hero {
        margin-top: 0;
        padding-top: 100px;
        min-height: 280px;
    }
    
    .pontos-hero h1 {
        font-size: 2rem;
    }
    
    .pontos-hero .lead {
        font-size: 1rem;
    }
    
    .badge-link {
        padding: 0.4rem 1rem;
    }
    
    .local-info {
        padding: 1.5rem;
    }
    
    .local-header h3 {
        font-size: 1.4rem;
    }
    
    .modalidade-treino {
        padding: 3rem 0;
    }
}

/* Página de Contato */
.contato-hero {
    position: relative;
    min-height: 380px;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: -92px;
}

.contato-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}

.contato-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 92px;
}

.contato-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contato-hero .lead {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.contato-content {
    background: var(--roxo);
    padding: 5rem 0;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
}

.social-btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.form-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-floating {
    background: transparent;
}

.form-floating > .form-control,
.form-floating > .form-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    height: calc(3.5rem + 2px);
    padding: 1.2rem 0.75rem;
}

.form-floating > textarea.form-control {
    height: 120px;
    min-height: 120px;
}

.form-floating > .form-control::placeholder {
    color: transparent;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    box-shadow: none;
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: rgba(255,255,255,0.7);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255,255,255,0.9);
    transform: scale(.85) translateY(-0.75rem) translateX(0.15rem);
}

.form-floating > .form-select ~ label {
    opacity: 0.7;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-floating > .form-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    height: calc(3.5rem + 2px);
    padding: 1.2rem 0.75rem;
    cursor: pointer;
}

.form-floating > .form-select:focus {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    box-shadow: none;
}

.form-floating > .form-select option {
    background: var(--roxo);
    color: #fff;
    padding: 10px;
}

.btn-enviar {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enviar:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-enviar i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .contato-hero {
        min-height: 320px;
    }
    
    .contato-hero h1 {
        font-size: 2.4rem;
    }
    
    .info-card,
    .form-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contato-hero {
        min-height: 280px;
    }
    
    .contato-hero h1 {
        font-size: 2rem;
    }
    
    .contato-hero .lead {
        font-size: 1rem;
    }
    
    .info-card {
        margin-bottom: 2rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}