/* ==========================================================================
   gest.club - Estilos da Página Em Construção
   Desenvolvimento: SoluçãoTI (https://solucaoti.pt)
   ========================================================================== */

:root {
    /* Paleta de Cores: Vermelhos e Verdes Desportivos */
    --green-primary: #10b981;
    --green-bright:  #00e676;
    --green-dark:    #047857;
    --green-glow:    rgba(16, 185, 129, 0.25);

    --red-primary:   #e63946;
    --red-bright:    #ff1744;
    --red-dark:      #991b1b;
    --red-glow:      rgba(230, 57, 70, 0.25);

    --bg-dark:       #0b131f;
    --bg-card:       rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    --text-white:    #ffffff;
    --text-muted:    #94a3b8;
    --border-subtle: rgba(255, 255, 255, 0.1);

    --font-main: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
}

/* Efeitos de Iluminação Desportiva de Fundo */
.bg-glow-green {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.bg-glow-red {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--red-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Wrapper Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red-dark), var(--green-dark));
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brand-badge span {
    color: var(--green-bright);
}

.solti-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.status-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--green-primary);
    color: var(--green-bright);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight-red {
    color: var(--red-primary);
    background: linear-gradient(135deg, var(--red-bright), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 .highlight-green {
    color: var(--green-primary);
    background: linear-gradient(135deg, var(--green-bright), #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* Carrossel/Lista de Modalidades / Tipos de Clubes */
.sports-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.sport-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sport-pill:hover {
    border-color: var(--red-primary);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}

/* Grelha de Destaques da Plataforma */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--green-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Área de Lusofonia & Contacto */
.contact-banner {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.4), rgba(4, 120, 87, 0.4));
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.lusofonia-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-banner p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.6);
    background: linear-gradient(135deg, var(--red-bright), var(--red-primary));
}

/* Rodapé */
footer {
    padding: 30px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--green-bright);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 16px;
    }
    .hero {
        padding: 40px 0 20px;
    }
    .sports-tags {
        gap: 8px;
    }
    .sport-pill {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}