/**
 * JUDÔ360 - Estilos Globais
 * Arquivo CSS principal com variáveis e estilos base
 * VERSÃO CORRIGIDA - Z-index ajustado
 */

/* ===== VARIÁVEIS CSS - NOVA PALETA MODERNA ===== */
:root {
    /* Cores Principais - Inspiração WebHero */
    --color-primary: #1A2332;        /* Azul Marinho Profundo */
    --color-secondary: #2D3748;      /* Cinza-Azulado (Cards Dark) */
    --color-accent: #00D9A3;         /* Verde-Água Vibrante */
    --color-accent-secondary: #FFB800; /* Amarelo Dourado */
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FA;      /* Neutro/Cards Claros */

    /* Cores dos Gokyos - Atualizadas */
    --color-gokyo-1: #00D9A3;        /* Verde-Água - Ik */
    --color-gokyo-2: #FFB800;        /* Amarelo Dourado - Ni */
    --color-gokyo-3: #9C27B0;        /* Roxo - San */
    --color-gokyo-4: #E74C3C;        /* Vermelho Vibrante - Yon */
    --color-gokyo-5: #7BA7CC;        /* Azul Suave Pastel - Go */

    /* Cores de Suporte */
    --color-gray-light: #F8F9FA;
    --color-gray: #9E9E9E;
    --color-gray-dark: #2D3748;
    --color-black: #1A1A1A;

    /* Fontes - Mais Bold e Impactante */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-japanese: 'Noto Sans JP', sans-serif;

    /* Tamanhos */
    --navbar-height: 80px;

    /* Aliases para compatibilidade */
    --color-gold: var(--color-accent-secondary);
    --color-beige: var(--color-off-white);
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Fix global para prevenir scroll horizontal em mobile */
main,
section,
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile-specific overflow fix */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    *:not(script):not(style) {
        max-width: 100vw;
    }

    .hero-section::before,
    .why-section::before {
        display: none !important;
    }
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
/* Para navegadores Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary);
    border-left: 1px solid rgba(0, 217, 163, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-accent) 0%, #00C793 100%);
    border-radius: 6px;
    border: 2px solid var(--color-primary);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00F0BD 0%, var(--color-accent) 100%);
    box-shadow: 0 0 10px rgba(0, 217, 163, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: var(--color-accent-secondary);
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER MODERNO ESTILO WEBHERO ===== */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-primary);
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-header.home-header {
    background-color: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.header-logo .logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover .logo-img {
    transform: scale(1.05);
}

.header-logo .logo-text {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Menu Desktop */
.header-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.header-menu li a {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-menu li a:hover {
    color: var(--color-accent);
}

.header-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.header-menu li a:hover::after {
    width: 100%;
}

/* Link Jornada - Destaque especial */
.header-menu li a.menu-jornada {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.15) 0%, rgba(0, 217, 163, 0.05) 100%);
    border: 1px solid rgba(0, 217, 163, 0.3);
    border-radius: 20px;
    color: var(--color-accent);
}

.header-menu li a.menu-jornada:hover {
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.3) 0%, rgba(0, 217, 163, 0.15) 100%);
    border-color: var(--color-accent);
}

.header-menu li a.menu-jornada::after {
    display: none;
}

/* Botões Header */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-login-header {
    padding: 0.8rem 2rem;
    background: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
}

.btn-login-header:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* ===== ICONES DO HEADER (Notificacoes/Mensagens) ===== */
.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.header-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 163, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-icon-btn:hover {
    background: rgba(0, 217, 163, 0.15);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.header-icon-badge,
.header-icon-btn .badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #dc3545;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-primary);
}

.header-icon-badge.hidden,
.header-icon-btn .badge-count.hidden {
    display: none;
}

/* Botão de Cadastro com Dropdown */
.cadastro-menu {
    position: relative;
}

.btn-cadastro-header {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--color-accent);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cadastro-header:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.cadastro-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--color-primary);
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    min-width: 220px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cadastro-menu:hover .cadastro-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cadastro-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.cadastro-dropdown a:hover {
    background: rgba(237, 182, 32, 0.1);
    color: var(--color-accent);
    transform: translateX(5px);
}

.cadastro-dropdown a i {
    width: 20px;
    text-align: center;
    color: var(--color-accent);
}

/* Menu do Usuário Logado */
.user-menu {
    position: relative;
}

.btn-user-header {
    padding: 0.8rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-user-header:hover {
    background: transparent;
    color: var(--color-accent);
    text-decoration: none;
}

/* Botao Area do Usuario (dinamico) */
.btn-area-usuario {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--color-accent);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-area-usuario:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Seções do Dropdown */
.dropdown-section {
    padding: 8px 0;
}

.dropdown-section + .dropdown-section {
    border-top: 1px solid #e9ecef;
    margin-top: 4px;
    padding-top: 12px;
}

.dropdown-section-title {
    display: block;
    padding: 8px 20px;
    color: #6c757d;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section-title i {
    margin-right: 6px;
    color: var(--color-accent);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0 8px;
    border-radius: 6px;
}

.user-dropdown a i {
    width: 18px;
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
}

.user-dropdown a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateX(4px);
}

.user-dropdown a:hover i {
    color: var(--color-primary);
}

.logout-link {
    color: #dc3545 !important;
    font-weight: 600;
}

.logout-link i {
    color: #dc3545 !important;
}

.logout-link:hover {
    background: #dc3545 !important;
    color: white !important;
}

.logout-link:hover i {
    color: white !important;
    color: var(--color-primary);
}

.user-dropdown a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Botão Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
    background: var(--color-accent);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-primary);
    z-index: 2000;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 2px solid rgba(0, 217, 163, 0.2);
}

.mobile-menu-header .mobile-logo-img {
    height: 40px;
    width: auto;
}

.mobile-menu-header .logo-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-white);
}

.close-mobile-menu {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
}

.mobile-menu-nav li a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--color-white);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-menu-nav li a:hover {
    background: rgba(0, 217, 163, 0.1);
    border-left-color: var(--color-accent);
    padding-left: 2rem;
    color: var(--color-accent);
}

.mobile-menu-actions {
    padding: 2rem 1.5rem;
    border-top: 2px solid rgba(0, 217, 163, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Menu Mobile - Usuario Logado */
.mobile-menu-user {
    padding: 2rem 1.5rem;
    border-top: 2px solid rgba(0, 217, 163, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-area-mobile,
.btn-perfil-mobile,
.btn-logout-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-area-mobile {
    background: var(--color-accent);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.btn-area-mobile:hover {
    background: transparent;
    color: var(--color-accent);
}

.btn-perfil-mobile {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-perfil-mobile:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-logout-mobile {
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.btn-logout-mobile:hover {
    background: #dc3545;
    color: white;
}

.btn-whatsapp-mobile,
.btn-login-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-mobile {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-whatsapp-mobile:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-login-mobile {
    background: var(--color-accent);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.btn-login-mobile:hover {
    background: transparent;
    color: var(--color-accent);
}

/* Cadastro Mobile */
.mobile-cadastro-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.btn-cadastro-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cadastro-mobile:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Ocultar elementos antigos */
.judo-navbar,
.hamburger-menu,
.sidebar-menu,
.sidebar-overlay {
    display: none !important;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== MENU HAMBÚRGUER ===== */
.hamburger-menu {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hamburger-menu:hover {
    background-color: var(--color-gold);
    transform: scale(1.05);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background-color: var(--color-primary);
}

/* ===== SIDEBAR MENU ===== */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1829 100%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow-y: auto;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.sidebar-header h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    margin: 0;
    letter-spacing: 2px;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-sidebar:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    transform: rotate(90deg);
}

.sidebar-nav {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    color: var(--color-white);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-nav a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-left-color: var(--color-gold);
    padding-left: 2rem;
}

.sidebar-nav a.active {
    background-color: rgba(212, 175, 55, 0.2);
    border-left-color: var(--color-gold);
    color: var(--color-gold);
}

.sidebar-nav i {
    font-size: 1.3rem;
    width: 25px;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.btn-login-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-gold);
    color: var(--color-primary);
    border: none;
    border-radius: 30px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-login-sidebar:hover {
    background-color: #C19B2E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: var(--color-primary);
}

/* ===== SIDEBAR OVERLAY ===== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== FOOTER MODERNO ===== */
.modern-footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1829 100%);
    color: var(--color-white);
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-text i {
    margin-right: 0.8rem;
    color: var(--color-accent);
    width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 217, 163, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-5px);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright-wrapper {
    flex: 1;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-dev-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-dev {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.akira-kaizen-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.akira-kaizen-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.akira-kaizen-logo {
    height: 30px;
    width: auto;
}

/* Ocultar footer antigo */
.judo-footer {
    display: none !important;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-copyright-wrapper {
        flex: none;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-dev-wrapper {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-dev {
        font-size: 0.8rem;
    }

    .footer-logo {
        max-width: 140px;
        margin: 0 auto 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-top {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-logo {
        max-width: 120px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .akira-kaizen-logo {
        height: 25px;
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: var(--color-gold);
    border: none;
    color: var(--color-primary);
    font-family: var(--font-title);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #C19B2E;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== SECTIONS ===== */
.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== UTILITIES ===== */
.text-gold {
    color: var(--color-gold);
}

.bg-beige {
    background-color: var(--color-beige);
}

.bg-navy {
    background-color: var(--color-primary);
}

/* ===== RESPONSIVE ===== */

/* Tablet e abaixo */
@media (max-width: 1024px) {
    .header-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .header-container {
        padding: 0 2rem;
    }
}

@media (max-width: 991px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Header */
    .modern-header {
        padding: 0.8rem 0;
    }

    .header-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .header-logo .logo-img {
        height: 40px;
    }

    .header-logo .logo-text {
        font-size: 1.4rem;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
    }

    /* Tipografia */
    .section-title {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    /* Espaçamentos gerais */
    body {
        font-size: 14px;
    }

    /* Botões gerais */
    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }

    .header-logo .logo-img {
        height: 35px;
    }

    .header-logo .logo-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Mobile menu ajustes */
    .mobile-menu-header {
        padding: 1.5rem 1rem;
    }

    .mobile-menu-nav li a {
        padding: 1rem 1rem;
        font-size: 1rem;
    }

    .mobile-menu-actions {
        padding: 1.5rem 1rem;
    }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
    .header-logo .logo-img {
        height: 30px;
    }

    .section-title {
        font-size: 1.2rem;
    }
}