:root {
    --azul-primario: #288ab8;
    --azul-escuro: #0d1226;
    --azul-card: #1a2639;
    --texto-claro: #ffffff;
    --texto-cinza: #b0bec5;
    --laranja: #d67b3d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--azul-escuro);
    color: var(--texto-claro);
    line-height: 1.6;
}

/* --- REMOVE SUBLINHADOS --- */
a {
    text-decoration: none !important;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

/* --- TELA INICIAL (INDEX) --- */
.home-body {
    height: 100vh;
    height: 100svh; /* Suporte para navegadores mobile modernos */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(13, 18, 38, 0.8), rgba(13, 18, 38, 0.9)), url('../assets/fundo.jpg');
    background-size: cover;
    background-position: center;
}

.home-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.home-logo {
    width: 100%;
    max-width: 280px;
    margin-bottom: 25px;
}

.home-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    max-width: 600px;
}

/* --- BOTÃO LARANJA (AJUSTADO) --- */
.btn-hero {
    background: var(--laranja);
    color: white !important;
    padding: 16px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    text-decoration: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.btn-hero:hover {
    transform: translateY(-5px);
    background: #b36532;
    box-shadow: 0 10px 30px rgba(214, 123, 61, 0.4);
}

/* --- BOTÃO ÁREA DE MEMBROS --- */
.top-login-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.top-login-btn a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.top-login-btn a:hover {
    background: white;
    color: var(--azul-escuro) !important;
}

/* --- REDES SOCIAIS (FOOTER) --- */
.home-footer {
    padding-bottom: 40px;
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-social a {
    font-size: 1.8rem;
    color: var(--azul-primario);
    transition: 0.3s;
    text-decoration: none !important;
}

.footer-social a:hover {
    transform: translateY(-5px);
    color: white;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 600px) {
    .home-logo { max-width: 200px; }
    .home-subtitle { font-size: 1rem; }
}
