/* Importando uma fonte mais elegante */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background-color: #000; color: #fff; }

/* BARRA SUPERIOR COLORIDA */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: linear-gradient(to bottom, #0a0a0a, #000);
    border-bottom: 2px solid #d4af37; /* Linha Dourada */
}

.logo-img { height: 70px; filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5)); }

.nav-buttons { display: flex; gap: 20px; }

/* Botão Estatuto (Dourado) */
.btn-estatuto {
    padding: 12px 25px;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.4s;
}
.btn-estatuto:hover { background: #d4af37; color: #000; }

/* Botão Inscrição (Rosa Vibrante) */
.btn-inscrever {
    padding: 12px 25px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.4);
    transition: 0.4s;
}
.btn-inscrever:hover { transform: scale(1.05); background: #ff2e7a; }

/* CARDS COM IMAGENS E CORES */
.hero-container { display: flex; height: 80vh; width: 100%; }

.card {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    background-size: cover;
    background-position: center;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.card:hover { flex: 1.4; }

/* SOBREPOSIÇÃO PARA DAR COR ÀS IMAGENS */
.card.therapy { 
    background-image: linear-gradient(to top, rgba(233, 30, 99, 0.8), transparent), 
    url('https://lh3.googleusercontent.com/d/1xcc88sjTWoQ0mmhEBFgD53fMECpA4WPy'); 
}

.card.talent { 
    background-image: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent), 
    url('https://lh3.googleusercontent.com/d/1NM6MsPzow5SC8bR8AHp4n0QWbXyqIVET'); 
}

/* TEXTOS COLORIDOS */
.badge { 
    background: #d4af37; 
    color: #000; 
    padding: 5px 15px; 
    border-radius: 5px; 
    font-size: 11px; 
    font-weight: bold; 
}

h2 { font-size: 3.5rem; margin: 15px 0; line-height: 1; }
h2 span { color: #e91e63; text-shadow: 0 0 10px rgba(233, 30, 99, 0.5); }

p { color: #ddd; font-size: 1.1rem; max-width: 400px; }