/* public_html/unified_style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --primary: #22c55e;
    --dark: #0f172a;
    --light: #f8fafc;
}

body { font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Título Hero Responsivo - Corrige erro do mobile */
.title-hero {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.05em;
}

/* Botões de Ação (CTA) */
.btn-cta {
    background-color: var(--primary);
    color: black;
    padding: 1.25rem 2.5rem;
    border-radius: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
}

.btn-cta:hover {
    background-color: black;
    color: white;
    transform: translateY(-2px);
}

.card-sport {
    background: #f1f5f9;
    padding: 2.5rem;
    border-radius: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.card-sport:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}
<style>
    /* Reset e estilos base */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    /* Menu responsivo */
    .menu-navegacao {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .menu-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .menu-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

    .btn-destaque {
        background: white;
        color: #764ba2 !important;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-weight: bold;
    }

    /* Grid de esportes */
    .grade-esportes {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 3rem 5%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .card-esporte {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        text-align: center;
        text-decoration: none;
        color: #333;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .card-esporte:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .icone-esporte {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    /* Media Query para tablets */
    @media (max-width: 768px) {
        .grade-esportes {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 2rem 5%;
        }

        .menu-links {
            display: none; /* Esconde menu em tablets */
        }
        
        /* Você pode adicionar um menu hambúrguer aqui */
    }

    /* Media Query para celulares */
    @media (max-width: 480px) {
        h1 {
            font-size: 2rem !important;
            text-align: center;
            padding: 0 1rem;
        }

        .grade-esportes {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .card-esporte {
            padding: 1.5rem;
        }

        .icone-esporte {
            font-size: 2.5rem;
        }
    }

    /* Melhorias para textos */
    h1, h2, h3 {
        margin-bottom: 1rem;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
    }
</style>