/* ===== MOBILE OVERRIDE - RESOLVE TODOS OS CONFLITOS ===== */

/* Importante: Este arquivo deve ser carregado DEPOIS do style.css e mobile.css */

@media screen and (max-width: 768px) {
  
  /* ===== RESET COMPLETO DE MARGENS NEGATIVAS ===== */
  .hero-container,
  .sobre-container,
  .modalidades-section .container,
  .modulos-section .container,
  .faq-section .container,
  .contact-section .container,
  .main-footer .container {
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
  }
  
  /* ===== GARANTIR DISPLAY CORRETO ===== */
  .modalidades-grid,
  .modulos-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  
  .hero-buttons,
  .contact-content,
  .footer-content,
  .footer-nav {
    display: flex !important;
  }
  
  .main-nav {
    display: flex !important;
  }
  
  /* ===== SOBRESCREVER FONTES CONFLITANTES ===== */
  .hero-title {
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    /* ===== MELHORAR CONTRASTE DO TEXTO HERO ===== */
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8) !important;
    position: relative !important;
    z-index: 3 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
  }
  
  .sobre-title {
    font-size: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  .section-title {
    font-size: 2.5rem !important;
    margin-bottom: 3rem !important;
  }
  
  .modulo-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .modalidade-title {
    font-size: 1.6rem !important;
  }
  
  .faq-question {
  font-size: 1.3rem !important;
  padding: 0 0 1rem 0 !important;
  font-weight: 700 !important;
  color: #ff8c42 !important;
}
  
  /* ===== SOBRESCREVER PADDING/MARGIN CONFLITANTES ===== */
  .hero-container {
    padding: 0 1.5rem !important;
    margin: 0 !important;
    /* ===== GARANTIR QUE O CONTEÚDO FIQUE ACIMA DO OVERLAY ===== */
    position: relative !important;
    z-index: 2 !important;
    /* ===== MELHORAR ESPAÇAMENTO HARMÔNICO ===== */
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .sobre-container {
    padding: 0 1.5rem !important;
    margin: 0 !important;
    /* ===== CORRIGIR POSICIONAMENTO DA SEÇÃO SOBRE ===== */
    justify-content: center !important;
    align-items: center !important;
  }
  
  .sobre-content {
    max-width: 100% !important;
    text-align: center !important;
    transform: none !important;
    margin-right: 0 !important;
    padding: 2rem 0 !important;
    /* ===== GARANTIR QUE O CONTEÚDO FIQUE ACIMA DOS OVERLAYS ===== */
    position: relative !important;
    z-index: 3 !important;
  }
  
  .modalidades-section .container {
    padding: 0 1.5rem !important;
    margin: 0 !important;
    top: 0 !important;
  }
  
  .modulos-section .container {
    padding: 0 1.5rem !important;
    margin: 0 !important;
  }
  
  .faq-section .container {
    padding: 0 1.5rem !important;
    margin: 0 !important;
  }
  
  .contact-section .container {
    padding: 0 1.5rem !important;
    margin: 0 !important;
  }
  
  .main-footer .container {
    padding: 0 1.5rem !important;
    margin: 0 !important;
  }
  
  /* ===== GARANTIR LAYOUT CORRETO ===== */
  .hero-section {
    min-height: 100vh !important;
    padding: 80px 0 40px !important;
    display: flex !important;
    align-items: center !important;
      /* ===== BACKGROUND MAIS NÍTIDO E ACESSÍVEL ===== */
  background: linear-gradient(135deg, rgba(9, 21, 19, 0.56) 0%, rgba(9, 17, 21, 0.49) 50%, rgba(9, 21, 19, 0.56) 100%), url('https://athleticmap.com/images/bkg-banner.png') no-repeat center center !important;
  background-size: cover !important;
  background-position: center center !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  filter: brightness(1.1) contrast(1.2) saturate(1.1) !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  /* ===== OVERLAY MAIS CLARO PARA MELHORAR VISIBILIDADE ===== */
  .hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(9, 21, 19, 0.42) 0%, rgba(9, 21, 19, 0.28) 50%, rgba(9, 21, 19, 0.42) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    filter: brightness(1.2) contrast(1.3) saturate(1.1) !important;
  }
  
  /* ===== REMOVER ANIMAÇÃO DE BACKGROUND NO MOBILE ===== */
  .hero-section {
    animation: none !important;
  }
  
  .sobre-section {
    padding: 5rem 0 !important;
    /* ===== RESTAURAR BACKGROUND DA SEÇÃO SOBRE ===== */
    background: linear-gradient(135deg, rgba(9, 21, 19, 0.35) -50%, rgba(9, 17, 21, 0.3) 176%, rgba(9, 21, 19, 0.35) 100%), url('https://athleticmap.com/images/desktop_bkg2.png') no-repeat center center !important;
    background-size: 100% !important;
    background-position: center bottom !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  /* ===== OVERLAY DA SEÇÃO SOBRE ===== */
  .sobre-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%) !important;
    pointer-events: none !important;
    filter: brightness(1.1) contrast(1.1) !important;
  }
  
  .sobre-section::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(90deg, rgba(9, 21, 19, 0.35) 0%, rgba(9, 21, 19, 0.105) 70%, rgba(9, 21, 19, 0.35) 100%) !important;
    pointer-events: none !important;
  }
  
  .modalidades-section {
    padding: 5rem 0 !important;
  }
  
  .modulos-section {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 212, 170, 0.1) 100%) !important;
  }
  
  .faq-section {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 140, 66, 0.1) 100%) !important;
  }
  
  .contact-section {
    padding: 5rem 0 !important;
    background: radial-gradient(circle at 124% 80%, rgba(255, 255, 0, 0.3) -23%, transparent 0%), radial-gradient(circle at -20% 20%, rgba(0, 0, 0, 0.4) 0%, transparent 250%), linear-gradient(404deg, rgba(0, 0, 0, 0.2) -38%, rgba(0, 0, 0, 0.1) 41%, rgba(255, 255, 0, 0.1) 118%, rgba(255, 255, 0, 0.2) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0px 0 0 0 !important;
  }
  
  .main-footer {
    padding: 2rem 0 1rem !important;
    /* ===== AJUSTE DO RODAPÉ PARA MOBILE ===== */
    text-align: center !important;
    background: linear-gradient(135deg, rgba(9, 21, 19, 0.95) 0%, rgba(9, 17, 21, 0.9) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  /* ===== OVERLAY DO RODAPÉ ===== */
  .main-footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%) !important;
    pointer-events: none !important;
  }
  
  .footer-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
  }
  
  .footer-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
  }
  
  .footer-nav a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
  }
  
  .footer-nav a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #00d4aa !important;
  }
  
  .footer-text {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-top: 1rem !important;
  }
  
  /* ===== REMOVER LANGUAGE DROPDOWN DO RODAPÉ NO MOBILE ===== */
  .language-dropdown {
    display: none !important;
  }
  
  /* ===== AJUSTE DOS ÍCONES SOCIAIS NO MOBILE ===== */
  .social-icons {
    width: 100% !important;
    justify-content: flex-start !important;
    margin-top: 0rem !important;
    gap: 1.5rem !important;
  }
  
  /* ===== AJUSTE DO DROPDOWN DE IDIOMAS NO MENU MOBILE ===== */
  .language-menu {
    width: 100% !important;
    margin: 1.5rem 0 !important;
    position: relative !important;
  }
  
  .language-btn {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 1rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .language-btn:hover {
    background: rgba(255, 140, 66, 0.1) !important;
    border-color: rgba(255, 140, 66, 0.3) !important;
  }
  
  .language-btn::after {
    content: '▼' !important;
    font-size: 0.8rem !important;
    margin-left: auto !important;
    transition: transform 0.3s ease !important;
  }
  
  .language-btn.active::after {
    transform: rotate(180deg) !important;
  }
  
  .language-dropdown {
    position: static !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    margin-top: 0.8rem !important;
    padding: 0.8rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: none !important;
    max-height: 300px !important;
    overflow-y: auto !important;
  }
  
  .language-dropdown.active {
    display: block !important;
  }
  
  .lang-option {
    width: 100% !important;
    padding: 1rem !important;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
  }
  
  .lang-option:hover {
    background-color: rgba(255, 140, 66, 0.1) !important;
    color: #ff8c42 !important;
  }
  
  .lang-option .flag-icon {
    width: 20px !important;
    height: 15px !important;
    border-radius: 2px !important;
  }
  
  /* ===== GARANTIR BOTÕES FUNCIONAIS ===== */
  .btn-primary {
    width: 100% !important;
    max-width: 320px !important;
    padding: 1.3rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }
  
  .submit-btn {
    width: 100% !important;
    padding: 1.3rem 2rem !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    min-height: 56px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
  }
  
  /* ===== GARANTIR CARDS FUNCIONAIS ===== */
  .modalidade-card {
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    min-height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .modulo-card {
  padding: 2.5rem 2rem !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}
  
  .faq-item {
    background: #ffffff !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 3 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 1.5rem !important;
  }
  
  .faq-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #00d4aa, #00b894) !important;
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
  }
  
  .faq-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
  }
  
  .faq-item:hover::before {
    transform: scaleX(1) !important;
  }
  
  .contact-form {
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  /* ===== GARANTIR FORMULÁRIO FUNCIONAL ===== */
  .form-group input,
  .form-group textarea {
    width: 100% !important;
    padding: 1.2rem !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    box-sizing: border-box !important;
  }
  
  /* ===== GARANTIR MENU MOBILE FUNCIONAL ===== */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .main-nav {
    display: none !important;
  }
  
  .main-nav.active {
    display: flex !important;
  }
  
  /* ===== GARANTIR CONTAINER RESPONSIVO ===== */
  .container {
    max-width: 100% !important;
    padding: 0 1.5rem !important;
    margin: 0 auto !important;
  }
  
  /* ===== AJUSTE DO MAIN CONTENT ===== */
  .main-content {
    margin-top: 10px !important;
  }
  
  /* ===== AUMENTAR TAMANHO DA LOGO NO MOBILE ===== */
  .logo-img {
    height: 60px !important;
    width: auto !important;
  }
  
  /* ===== GARANTIR TEXTO LEGÍVEL ===== */
  .hero-subtitle {
    font-size: 1.4rem !important;
    margin-bottom: 2rem !important;
    color: #ff8c42 !important;
    /* ===== MELHORAR CONTRASTE DO SUBTÍTULO ===== */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7) !important;
    position: relative !important;
    z-index: 3 !important;
    font-weight: 600 !important;
  }
  
  .hero-highlight {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    /* ===== MELHORAR CONTRASTE DO HIGHLIGHT ===== */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
    position: relative !important;
    z-index: 3 !important;
  }
  
  .sobre-text p {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.8rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  
  /* ===== CORRIGIR POSICIONAMENTO DOS MARCADORES DOS MÓDULOS ===== */
  .modulo-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* ===== ADICIONAR MARCADORES AOS TÍTULOS DOS MÓDULOS ===== */
  .modulo-title {
    position: relative !important;
    padding-left: 2rem !important;
    margin-bottom: 2.8rem !important;
  }
  
  .modulo-title::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #ff8c42 !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .modulo-subtitle {
    position: relative !important;
    padding-left: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .modulo-subtitle::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #ff8c42 !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
  }
  
  .modulo-features li {
    font-size: 1.1rem !important;
    padding: 0.8rem 0 0.8rem 2rem !important;
    color: #000000 !important;
    position: relative !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: flex-start !important;
  }
  
  .modulo-features li::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.8rem !important;
    color: #ff8c42 !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    transform: translateY(0) !important;
    will-change: transform !important;
  }
  
  .faq-answer {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #000000 !important;
  }
  
  .contact-subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
  }
  
  .contact-description {
    color: #ffffff !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    margin-top: 1rem !important;
  }
  
  /* ===== GARANTIR ÍCONES VISÍVEIS ===== */
  .modalidade-icon i {
    font-size: 60px !important;
    color: #00d4aa !important;
  }
  
  /* ===== GARANTIR FOOTER FUNCIONAL ===== */
  .footer-nav a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
  }
  
  .footer-text {
    color: rgba(255, 255, 255, 0.6) !important;
  }
  
  /* ===== GARANTIR ESTABILIDADE VISUAL ===== */
  .modulo-card {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
  }
  
  /* ===== GARANTIR QUE OS MARCADORES APAREÇAM ===== */
  .modulo-title::before,
  .modulo-subtitle::before,
  .modulo-features li::before {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* ===== SOBRESCREVER CONFLITOS DO MOBILE.CSS ===== */
  .modulo-title::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #ff8c42 !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .modulo-features li {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
  }
  
  .modulo-features li::before {
    transform: translateZ(0) translateY(0) !important;
    backface-visibility: hidden !important;
  }
}

/* ===== SMALL MOBILE OVERRIDES ===== */
@media screen and (max-width: 480px) {
  /* ===== BACKGROUND MAIS NÍTIDO PARA TELAS PEQUENAS ===== */
  .hero-section {
    background: linear-gradient(135deg, rgba(9, 21, 19, 0.49) 0%, rgba(9, 17, 21, 0.42) 50%, rgba(9, 21, 19, 0.49) 100%), url('https://athleticmap.com/images/bkg-banner.png') no-repeat center center !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    padding: 0px 0 30px !important;
    filter: brightness(1.1) contrast(1.2) saturate(1.1) !important;
  }
  
  .hero-section::before {
    background: linear-gradient(135deg, rgba(9, 21, 19, 0.35) 0%, rgba(9, 21, 19, 0.245) 50%, rgba(9, 21, 19, 0.35) 100%) !important;
    filter: brightness(1.2) contrast(1.3) saturate(1.1) !important;
  }
  
  .hero-title {
    font-size: 2.2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.2rem !important;
  }
  
  .hero-highlight {
    font-size: 1.1rem !important;
  }
  
  .sobre-title {
    font-size: 2rem !important;
  }
  
  .section-title {
    font-size: 2rem !important;
    line-height: 20px !important;
  }
  
  /* ===== CORRIGIR MARCADORES DOS MÓDULOS PARA TELAS PEQUENAS ===== */
  .modulo-title {
    font-size: 1.6rem !important;
    padding-left: 1.8rem !important;
  }
  
  .modulo-title::before {
    font-size: 1.1rem !important;
  }
  
  .modulo-subtitle {
    padding-left: 1.8rem !important;
  }
  
  .modulo-subtitle::before {
    font-size: 1.1rem !important;
  }
  
  .modulo-features li {
    font-size: 1rem !important;
    padding: 0.7rem 0 0.7rem 1.8rem !important;
    line-height: 1.3 !important;
  }
  
  .modulo-features li::before {
    top: 0.7rem !important;
    font-size: 1.1rem !important;
    transform: translateY(0) !important;
  }
  
  .modalidade-title {
    font-size: 1.4rem !important;
  }
  
  .faq-question {
    font-size: 1.2rem !important;
    line-height: 27px !important;
  }
  
  .contact-subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
  }
  
  .container {
    padding: 0 1rem !important;
  }
  
  .modalidade-card,
  .modulo-card {
    padding: 2rem 1.5rem !important;
  }
  
  .contact-form {
    padding: 2rem 1.5rem !important;
  }
  
  /* ===== LOGO MAIOR PARA TELAS PEQUENAS ===== */
  .logo-img {
    height: 70px !important;
    width: auto !important;
  }
  
  /* ===== AJUSTE DA SEÇÃO SOBRE PARA TELAS PEQUENAS ===== */
  .sobre-content {
    padding: 1.5rem 0 !important;
  }
  
  .sobre-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .sobre-text p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.2rem !important;
  }
  
  /* ===== AJUSTE DO RODAPÉ PARA TELAS PEQUENAS ===== */
  .main-footer {
    padding: 1.5rem 0 1rem !important;
  }
  
  .footer-content {
    gap: 0.8rem !important;
  }
  
  .footer-nav {
    gap: 0.4rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .footer-nav a {
    font-size: 1rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  
  .footer-text {
    font-size: 0.9rem !important;
    margin-top: 0.8rem !important;
  }
  
  /* ===== AJUSTE DO DROPDOWN DE IDIOMAS PARA TELAS PEQUENAS ===== */
.language-btn {
  padding: 0.8rem 1.2rem !important;
  font-size: 0.95rem !important;
}

.language-dropdown {
  margin-top: 0.6rem !important;
  padding: 0.6rem !important;
  max-height: 250px !important;
}

.lang-option {
  padding: 0.8rem !important;
  font-size: 0.9rem !important;
  gap: 0.6rem !important;
}

.lang-option .flag-icon {
  width: 18px !important;
  height: 13px !important;
}

/* ===== AJUSTE DO BODY PARA MOBILE ===== */
body {
  font-size: 16px !important;
  line-height: 0 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
}

/* ===== LANDSCAPE OVERRIDES ===== */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .modalidades-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .modulos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .hero-buttons {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  
  .btn-primary {
    width: auto !important;
    min-width: 200px !important;
  }
}

/* ===== PRIVACY CONSENT BANNER ===== */
.privacy-consent-banner {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(135deg, rgba(9, 21, 19, 0.95) 0%, rgba(9, 17, 21, 0.95) 100%) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  z-index: 9999 !important;
  display: none;
  padding: 1.5rem 0 !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
}

.privacy-consent-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.privacy-consent-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  align-items: center !important;
  text-align: center !important;
}

.privacy-consent-title {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.privacy-consent-description {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  max-width: 600px !important;
}

.privacy-link {
  color: #00d4aa !important;
  text-decoration: underline !important;
  transition: color 0.3s ease !important;
}

.privacy-link:hover {
  color: #ff8c42 !important;
}

.privacy-consent-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.8rem !important;
  justify-content: center !important;
  align-items: center !important;
}

.privacy-btn {
  padding: 0.6rem 1.2rem !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
}

.privacy-btn-primary {
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3) !important;
}

.privacy-btn-primary:hover {
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4) !important;
}

.privacy-btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.privacy-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.privacy-btn-link {
  background: transparent !important;
  color: #00d4aa !important;
  text-decoration: underline !important;
  padding: 0.6rem 0.8rem !important;
}

.privacy-btn-link:hover {
  color: #ff8c42 !important;
  background: rgba(255, 140, 66, 0.1) !important;
}

/* Privacy Modal */
.privacy-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  z-index: 10000 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
}

.privacy-modal-content {
  background: linear-gradient(135deg, rgba(9, 21, 19, 0.95) 0%, rgba(9, 17, 21, 0.95) 100%) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  max-width: 500px !important;
  width: 100% !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
}

.privacy-modal-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1.5rem 1.5rem 1rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.privacy-modal-title {
  color: #ffffff !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.privacy-modal-close {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
  cursor: pointer !important;
  padding: 0.5rem !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.privacy-modal-close:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.privacy-modal-body {
  padding: 1.5rem !important;
}

.privacy-option {
  margin-bottom: 1.5rem !important;
  padding: 1rem !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.privacy-option-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.5rem !important;
}

.privacy-option-label {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  font-size: 1rem !important;
}

.privacy-option-label input[type="checkbox"] {
  display: none !important;
}

.privacy-checkbox {
  width: 20px !important;
  height: 20px !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.privacy-option-label input[type="checkbox"]:checked + .privacy-checkbox {
  background: #00d4aa !important;
  border-color: #00d4aa !important;
}

.privacy-option-label input[type="checkbox"]:checked + .privacy-checkbox::after {
  content: '✓' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: bold !important;
}

.privacy-option-label input[type="checkbox"]:disabled + .privacy-checkbox {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  opacity: 0.6 !important;
}

.privacy-option-required {
  background: #ff8c42 !important;
  color: #ffffff !important;
  padding: 0.2rem 0.6rem !important;
  border-radius: 12px !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

.privacy-option-description {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.privacy-modal-footer {
  display: flex !important;
  gap: 1rem !important;
  padding: 1rem 1.5rem 1.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  justify-content: flex-end !important;
}

/* Mobile Responsive for Privacy Banner */
@media screen and (max-width: 768px) {
  .privacy-consent-banner {
    padding: 1rem 0 !important;
  }
  
  .privacy-consent-content {
    gap: 0.8rem !important;
  }
  
  .privacy-consent-title {
    font-size: 1.1rem !important;
  }
  
  .privacy-consent-description {
    font-size: 0.9rem !important;
  }
  
  .privacy-consent-buttons {
    gap: 0.6rem !important;
  }
  
  .privacy-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    min-height: 40px !important;
  }
  
  .privacy-modal-content {
    margin: 1rem !important;
    max-height: 85vh !important;
  }
  
  .privacy-modal-header {
    padding: 1.2rem 1.2rem 0.8rem !important;
  }
  
  .privacy-modal-title {
    font-size: 1.2rem !important;
  }
  
  .privacy-modal-body {
    padding: 1.2rem !important;
  }
  
  .privacy-option {
    margin-bottom: 1.2rem !important;
    padding: 0.8rem !important;
  }
  
  .privacy-option-label {
    font-size: 0.95rem !important;
  }
  
  .privacy-option-description {
    font-size: 0.85rem !important;
  }
  
  .privacy-modal-footer {
    padding: 0.8rem 1.2rem 1.2rem !important;
    flex-direction: column !important;
  }
  
  .privacy-modal-footer .privacy-btn {
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  .privacy-consent-banner {
    padding: 0.8rem 0 !important;
  }
  
  .privacy-consent-container {
    padding: 0 0.8rem !important;
  }
  
  .privacy-consent-title {
    font-size: 1rem !important;
  }
  
  .privacy-consent-description {
    font-size: 0.85rem !important;
  }
  
  .privacy-consent-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }
  
  .privacy-btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  .privacy-modal-content {
    margin: 0.5rem !important;
    max-height: 80vh !important;
  }
  
  .privacy-modal-header {
    padding: 1rem 1rem 0.6rem !important;
  }
  
  .privacy-modal-title {
    font-size: 1.1rem !important;
  }
  
  .privacy-modal-body {
    padding: 1rem !important;
  }
  
  .privacy-option {
    margin-bottom: 1rem !important;
    padding: 0.6rem !important;
  }
  
  .privacy-option-label {
    font-size: 0.9rem !important;
  }
  
  .privacy-option-description {
    font-size: 0.8rem !important;
  }
}

/* ===== LARGE SCREEN OVERRIDES ===== */
@media (min-width: 1400px) {
  .sobre-title {
    font-size: 3rem !important;
  }
}

/* AI Chat Avatar Mobile Overrides */
@media screen and (max-width: 768px) {
    .ai-chat-avatar {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        z-index: 1000 !important;
    }
    
    .ai-chat-modal {
        bottom: 80px !important;
        right: 20px !important;
        left: 20px !important;
        width: auto !important;
        height: 450px !important;
        z-index: 1001 !important;
    }
    
    .ai-chat-header {
        padding: 12px 15px !important;
    }
    
    .ai-chat-title {
        font-size: 14px !important;
    }
    
    .ai-chat-body {
        padding: 15px !important;
    }
    
    .ai-chat-input {
        padding: 12px 15px !important;
    }
    
    .ai-avatar-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .ai-avatar-small svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .ai-robot-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    .ai-robot-image-small {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    /* ===== ESTILOS DA IMAGEM DE ATLETAS NO TABLET ===== */
    .contact-image-container {
        margin-top: 2.5rem !important;
        padding: 0 2rem !important;
    }
    
    .contact-atletas-image {
        border-radius: 14px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* ===== ESTILOS DA IMAGEM DE CONTATO NO TABLET ===== */
    .contact-info-image-container {
        margin-top: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .contact-info-image {
        border-radius: 10px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    }
}

@media screen and (max-width: 480px) {
    .ai-chat-avatar {
        bottom: 15px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .ai-chat-modal {
        bottom: 70px !important;
        right: 15px !important;
        left: 15px !important;
        height: 400px !important;
    }
    
    .ai-avatar-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .ai-avatar-small svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .ai-robot-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    .ai-robot-image-small {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    .ai-chat-header {
        padding: 10px 12px !important;
    }
    
    .ai-chat-title {
        font-size: 13px !important;
    }
    
    .ai-chat-body {
        padding: 12px !important;
    }
    
    .ai-chat-input {
        padding: 10px 12px !important;
    }
    
    .ai-chat-input input {
        font-size: 13px !important;
        padding: 8px 12px !important;
    }
    
    .ai-send-btn {
        width: 35px !important;
        height: 35px !important;
    }
    
    .ai-suggestion-btn {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
    
    .ai-message {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    
    .ai-welcome-message p {
        font-size: 13px !important;
    }
    
    /* ===== ESTILOS DA IMAGEM DE ATLETAS NO MOBILE ===== */
    .contact-image-container {
        margin-top: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .contact-atletas-image {
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .contact-atletas-image:hover {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
    }
    
    /* ===== ESTILOS DA IMAGEM DE CONTATO NO MOBILE ===== */
    .contact-info-image-container {
        margin-top: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .contact-info-image {
        border-radius: 8px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .contact-info-image:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
}
