/* --------------------- */
/* 🔹 ESTILOS GERAIS 🔹 */
/* --------------------- */

body {
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

/* ----------------------- */
/* 🔹 NAVBAR 🔹 */
/* ----------------------- */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000 !important;
    border-bottom: 2px solid #e91e63;
    padding: 10px 20px;
    height: auto;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

/* 🔹 Mantém os links do lado direito */
.navbar .navbar-nav {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

.navbar .nav-link {
    color: #e91e63 !important;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px;
    text-decoration: none;
}

.navbar .nav-link:hover {
    color: #f8bbd0 !important;
    transition: 0.3s;
}

/* 🔹 Força a cor de fundo e o ícone branco do botão do menu */
.navbar-toggler {
    background-color: #e91e63 !important; /* Rosa */
    border-radius: 5px;
    padding: 10px;
    border: none;
}

/* 🔹 Garante que o ícone do botão fique branco */
.navbar-toggler-icon {
    filter: invert(1) !important; /* Torna o ícone branco */
    width: 30px;
    height: 30px;
}

/* 🔹 Ajuste do menu dropdown no mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #000 !important;
        padding: 10px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav .nav-item {
        padding: 5px 0;
    }

    .navbar .nav-link {
        font-size: 1.1rem;
        display: block;
    }
}

/* ---------------------- */
/* 🔹 HERO SECTION 🔹 */
/* ---------------------- */

.hero {
    background: linear-gradient(to right, #e91e63, #880e4f);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ---------------------- */
/* 🔹 CARROSSEL 🔹 */
/* ---------------------- */

.carousel {
    width: 80%;
    margin: 0 auto;
}

.carousel-inner {
    border-radius: 10px;
}

.carousel-item img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* 🔹 Oculta botões indesejados no carrossel */
.carousel button {
    display: none;
}

/* ---------------------- */
/* 🔹 BOTÃO DE ÁUDIO 🔹 */
/* ---------------------- */

.audio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    text-align: center; /* Garante centralização */
}

#audio-toggle {
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    display: block;
    margin: 0 auto;
}

#audio-toggle:hover {
    background-color: #c2185b;
}

/* --------------------- */
/* 🔹 ESTILO DO LOGIN 🔹 */
/* --------------------- */

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: white;
    text-align: center;
    color: black;
    margin: 50px auto;
}

/* Inputs */
.login-card input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Botão de Login */
.login-card button {
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

.login-card button:hover {
    background-color: #c2185b;
}

/* ---------------------- */
/* 🔹 ESTILO DO RODAPÉ 🔹 */
/* ---------------------- */

footer {
    background: linear-gradient(to right, #e91e63, #880e4f) !important;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* ---------------------- */
/* 🔹 OUTROS AJUSTES 🔹 */
/* ---------------------- */

.profile-image {
    display: block;
    margin: 0 auto;
    margin-top: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #e91e63;
    object-fit: cover;
}

.logo {
    height: 100px;
    margin-right: 10px;
}
