/**
 * style_hub.css - Estilos da Landing Page PONTUS PRO
 */
:root {
    --pnt-main: #1e293b;
    --pnt-accent: #f4665c; 
    --bg-body: #0f172a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../img/back.png') no-repeat center center;
    background-size: cover;
    opacity: 0.15; 
    z-index: -1;
    pointer-events: none;
}

.main-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.brand-header {
    text-align: center;
    margin-bottom: 60px;
}

.logo-prorank {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(244, 102, 92, 0.4));
}

.prorank-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--pnt-accent);
    margin-top: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hub-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.hub-card {
    background: rgba(255, 255, 255, 0.12); 
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 45px;
    padding: 50px 40px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 450px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.hub-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--pnt-accent);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.7);
}

.sport-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

.hub-card:hover .sport-logo {
    transform: scale(1.08);
}

.sport-title {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.sport-desc {
    font-size: 0.95rem;
    color: #f1f5f9; 
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-enter {
    background: var(--pnt-accent);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 45px;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(244, 102, 92, 0.4);
    border: none;
}

.hub-card:hover .btn-enter {
    background: white;
    color: var(--pnt-main);
    transform: scale(1.05);
}

.main-footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 25px;
}

.footer-copy {
    color: #f8fafc;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Seletor de Idiomas Hub */
.lang-hub {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.btn-lang-hub {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .logo-prorank { max-width: 260px; }
    .hub-card { padding: 40px 25px; margin: 0 15px; }
    .sport-logo { width: 200px; }
}