/* Fontes e cores rústicas */
body {
    background-color: #1E1E1E;
    color: #f3e9d2;
    font-family: 'Merriweather', serif;
}

/* Logo */
.logo {
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    color: #ffffff;
}

/* Links */
.nav-link {
    color: #efeeee !important;
    font-weight: 600;
}
.nav-link:hover {
    color: #E74C3C !important;
}

/* Hero */
#hero {
    height: 60vh;
    background: url('../data/images/background.jpg') center/cover no-repeat;
    position: relative;
}
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
#hero h2,
#hero p {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* Section Titles */
.section-title {
    font-family: 'Special Elite', cursive;
    color: #db7909;
    border-left: 4px solid #D97706;
    padding-left: 10px;
}

/* Cards */
.integrante-card {
    background: #130e08;
    border: 1px solid #412607;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.integrante-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.7);
    border-color: #db7909;
}
.integrante-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.05);
    transition: filter 0.3s ease;
}
.integrante-card:hover img {
    filter: grayscale(0) brightness(1.1);
}
.integrante-card .card-title {
    font-family: 'Special Elite', cursive;
    font-size: 1.3rem;
    color: #db7909;
}
.integrante-card .funcao {
    font-size: 0.95rem;
    color: #F1C40F;
    font-weight: bold;
    margin-bottom: 10px;
}
.integrante-card .descricao {
    font-size: 0.9rem;
    color: #d9cbb8;
}

/* Vídeo responsivo */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
    overflow: hidden;
}
.video-container::after {
    content: "";
    display: block;
    padding-bottom: 56.25%; /* 16:9 */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: #2E1F0F;
    color: #f3e9d2;
    font-size: 10pt;
}
footer a {
    color: #F1C40F;
    font-size: 13pt;
    text-decoration: none;
}
footer a:hover {
    color: #E74C3C;
}

/* Menu lateral */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100vh;
    transition: left 0.3s ease-in-out;
    z-index: 999;
}
.mobile-menu.active {
    left: 0;
}

/* Esconde no desktop */
@media (min-width: 768px) {
    #mobile-menu, #menu-toggle {
        display: none;
    }
}
