/* CSS específico para mobile - MFA */

/* Reset para mobile */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .container {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Header simplificado */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        padding: 10px 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 15px;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text span {
        font-size: 12px;
        font-weight: 600;
    }
    
    .nav-list {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-link {
        font-size: 14px;
        text-decoration: none;
        color: #333;
        padding: 5px 10px;
    }
    
    .header-buttons {
        display: flex;
        gap: 10px;
    }
    
    /* Menu mobile */
    .mobile-menu-button {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        gap: 4px;
        z-index: 1001;
    }
    
    .mobile-menu-button span {
        width: 25px;
        height: 3px;
        background-color: #333;
        transition: 0.3s;
        border-radius: 2px;
        display: block;
    }
    
    .nav {
        position: relative;
    }
    
    @media (max-width: 768px) {
        .nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .nav.active {
            transform: translateY(0px);
            opacity: 1;
            visibility: visible;
        }
        
        .nav-list {
            flex-direction: column;
            gap: 1rem;
        }
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 6px;
        text-decoration: none;
        border: 2px solid #0066cc;
        background: transparent;
        color: #0066cc;
    }
    
    .btn-primary {
        background: #0066cc;
        color: white;
    }
    
    /* Hero section simplificado */
    .hero {
        padding: 140px 15px 60px;
        text-align: center;
        background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 100%;
    }
    
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .hero-logo-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: white;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .hero-title-line {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }
    
    .hero-title-highlight {
        font-size: 28px;
        font-weight: 700;
        color: #0066cc;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 16px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
    }
    
    /* Seções simplificadas */
    .section {
        padding: 40px 15px;
        background: white;
    }
    
    .section-alt {
        background: #f8f9fa;
    }
    
    .section-content {
        max-width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .section-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin: 0;
    }
    
    /* Cards simplificados */
    .servicos-grid,
    .diferenciais-grid,
    .atletas-grid,
    .categorias-grid,
    .depoimentos-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .servico-card,
    .diferencial-card,
    .atleta-card,
    .categoria-card,
    .depoimento-card {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border: 1px solid #e0e0e0;
    }
    
    .servico-card-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .servico-icon {
        font-size: 24px;
    }
    
    .servico-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }
    
    .servico-card p {
        color: #666;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .servico-features {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .feature {
        color: #666;
        font-size: 14px;
    }
    
    /* Estatísticas */
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-card {
        background: linear-gradient(135deg, #0066cc, #4d94ff);
        color: white;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 12px;
        opacity: 0.9;
    }
    
    /* Formulário */
    .form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        font-size: 16px;
        background: white;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #0066cc;
    }
    
    /* Footer */
    .footer {
        background: #333;
        color: white;
        padding: 30px 15px 20px;
        text-align: center;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-logo-img {
        width: 30px;
        height: 30px;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
    }
    
    .footer-bottom {
        border-top: 1px solid #555;
        padding-top: 15px;
        margin-top: 20px;
        font-size: 12px;
        color: #999;
    }
}

/* Correções para telas muito pequenas */
@media (max-width: 480px) {
    .hero {
        padding: 100px 10px 40px;
    }
    
    .hero-title-highlight {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .servico-card,
    .diferencial-card,
    .atleta-card,
    .categoria-card,
    .depoimento-card {
        padding: 15px;
    }
    
    .nav-list {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 3px 8px;
    }
} 