/* Conteúdo original de menu.css */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap");

/* ---------------FONTES---------------------- */
@font-face {
    font-family: 'cinema-sunday';
    src: url('../fontes/cinema-sunday.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hookride';
    src: url('../fontes/hookride.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'jackoe';
    src: url('../fontes/Jackoe.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'karlotte';
    src: url('../fontes/Karlotte.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'monda';
    src: url('../fontes/Monda.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppins-bold';
    src: url('../fontes/Poppins-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'rociroll';
    src: url('../fontes/Rociroll.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



/* --- Estilização da Barra de Rolagem --- */
html {
  scrollbar-width: thin;
  scrollbar-color: #c70000 #222;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #222; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #c70000; 
  border-radius: 10px;
  border: 2px solid #222; 
}
::-webkit-scrollbar-thumb:hover {
  background-color: #e04444; 
}
::-webkit-scrollbar-corner {
  background: #222;
}
/* --- Fim Estilização da Barra de Rolagem --- */

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

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #1b1b1b);
  color: #fff;
  overflow-x: hidden;
}
:root {
 --vinho: #360a03;
 --black: #000000;
}

/* ----------------- Navbar ----------------- */

.desktop-navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
    width: calc(100% - 2rem);
    max-width: 1200px;
}
.glass-morphism {
    display: flex;
    justify-content: space-between;
    background: var(--black);
    backdrop-filter: blur(20px);
    /* Efeito de desfoque do fundo */
    border: 1px solid #ac0f0f;
    border-radius: 3rem;
    box-shadow: 0 8px 32px 0 rgba(194, 9, 9, 0.549);
    /* Sombra sutil */
}
.logo {
  margin-left: 20px;
  font-family: "Ms Madi", cursive;
  font-weight: 500;
  text-shadow: #760e0e 6px 6px 8px;
  font-style: normal;
  font-size: 3rem;
  color: #ffffff;
  transition: color 0.3s ease, text-shadow 0.3s ease; 
}

.logo:hover {
  color: #FFBA42; 
  text-shadow: #760e0e 6px 6px 8px, 0 0 10px rgba(255, 186, 66, 0.7); 
}

.links-content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Ajuste no ícone de login */
.login-nav{
  width: 50px;
  height: 55px;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2px;
  box-sizing: border-box;
  object-fit: cover;
}

.login-nav:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 4px #ff0000);
}


.navlinks{
  font-family: 'cinema-sunday', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.mobile-navbar {
  display: none;
}


nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff0033;
}
/* ------------------ Fim Navbar ----------------- */

/* ================================================= */
/* === CÓDIGO MOVIDO DE STYLE.CSS PARA CÁ ABAIXO === */
/* ================================================= */

.btnLogin-popup-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 50px;
    background: transparent;
    border: 2px solid #FFBA42;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    color: #FFBA42;
    transition: 0.5s;
    gap: 15px;
    padding: 0 12px 0 12px;
}

.btnLogin-popup-mobile p {
    font-size: 1.6rem;
    font-family: 'cinema-sunday', sans-serif;

}

.btnLogin-popup-mobile img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: cover;
    border-radius: 50%;
}


/* === NOVO CONTAINER (PASSO 1) === */
.profile-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px; /* Margem do ícone */
}


/* MODELO DO SEU AMIGO (Mantido) */
/* === MENU DE PERFIL === */
.profile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem; /* Aumentei o espaço */
    width: 220px;
    /* Removi 'background: transparent' para o blur funcionar */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(172, 15, 15, 0.621); /* Borda vermelha do seu tema */
    border-radius: 12px; /* Borda mais moderna */
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Animação de surgir */
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden; /* Para o border-radius */
}

.profile-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-card {
    /* Fundo escuro com blur */
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 20, 20, 0.08),
     transparent 25%), radial-gradient(circle at 80% 70%, rgba(255, 20, 20, 0.06), transparent 25%), linear-gradient(180deg, #1a1515, #130f0f);
    border-radius: 0; /* O container pai (dropdown) já tem */
    padding: 10px 0px; /* Ajuste de padding */
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(44, 1, 1, 0.516); /* Sombra do seu tema */
}

/* Isso era verde, mudei para vermelho */
.profile-separator {
    border-top: 1.5px solid #ac0f0f;
}

/* Isso era verde, mudei para vermelho */
.profile-element:hover{
    background: rgba(163, 12, 12, 0.5); /* Fundo vermelho do seu tema */
}

.profile-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0px 10px;
    margin: 0;
}

.profile-element {
    display: flex;
    align-items: center;
    color: #ccc; /* Cor mais clara */
    gap: 10px;
    transition: all 0.3s ease-out;
    padding: 4px 7px;
    border-radius: 6px;
}

.profile-element svg {
    width: 19px;
    height: 19px;
    transition: all 0.3s ease-out;
    stroke: #ccc; /* Cor do ícone */
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 4px 7px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
    margin: 0;
}

.profile-element:hover .profile-link {
    color: #ffffff; /* Texto branco no hover */
}
.profile-element:hover {
    transform: translateX(5px); /* Efeito de slide */
}

.profile-element:active {
    transform: scale(0.99) translateX(5px);
}

.profile-list:last-child svg {
    stroke: #ccc;
}

.profile-list:last-child:hover svg {
    stroke: #ffffff;
}

/* ==================== Fim Menu de Perfil ==================== */



/* === MEDIA QUERY PARA RESPONSIVIDADE === */
@media (max-width: 768px) {
    .desktop-navbar {
        display: none; /* Esconde o menu de desktop */
    }
    .logo-mobilenav{
        height: 55px; width: 55px;
        filter: drop-shadow(0 0 6px #ff0000);
    }

    .mobile-navbar {
        top: 0;
        position: fixed;
        width: 100%;
        padding: 16px;
        background-color: #360a03; /* Você pode mudar isso para 'var(--vinho)' */
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
    }


    .menu-toggle {
        margin-right: 4vw;
        width: 40px;
        height: 25px;
        position: relative;
        cursor: pointer;
        border: none;
        background: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        z-index: 1101;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 3px;
        transition: transform 0.4s, opacity 0.4s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(50deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-50deg) translate(9px, -9px);
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000033;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1100;
        animation: none;
    }

    .mobile-nav.active {
        display: flex;
        animation: fadeInUp 0.8s ease-out forwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-nav {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease;
    }

    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        opacity: 1;
        visibility: visible;
        background: linear-gradient(-45deg, #340404, #540606, #580f0f, #360303, #000000);
        background-size: 400% 400%;
        animation: bg 12s ease infinite, fadeInUp 0.8s ease-out forwards;

    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li {
        margin: 1.5rem 0;
    }

    .mobile-nav a {
        color: white;
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-decoration: none;
        font-family: 'cinema-sunday', sans-serif;
    }

    /* .btnLogin-popup {
        margin: 0;
    } */

    .redes-sociais-mobile {
        display: flex;
        gap: 20px;
    }
    .redes-sociais-mobile a{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: all 0.3s ease;
        margin: 0;
    }
    .redes-sociais-mobile img{
        width: 30px;
        height: 30px;
    }
    .whatsapp-link {
        background-color: #25D366;
    }
    .instagram-link {
        background-color: #E1306C;
    }
    .tiktok-link {
        background-color: #600a52;
    }
    .telegram-link {
        background-color: #0088cc;
    }
    .youtube-link {
        background-color: #FF0000;
    }

    body.noscroll {
        overflow: hidden;
    }
}
/*------------- FIM NAVBAR--------------

/* ==================== Footer ================= */
/* ==================== FOOTER ================= */
/* ==================== FOOTER v2 (Design Caprichado) ==================== */
.site-footer-v2 {
    background-color: #000;
    color: #ccc;
    padding: 5rem 2rem 1.5rem 2rem;
    margin-top: 4rem;
    position: relative; /* Necessário para a barra de glow */
    overflow: hidden; /* Previne que o glow vaze */
}

/* A barra vermelha/dourada no topo */
.footer-glow-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #a30c0c, #FFBA42, #a30c0c);
    box-shadow: 0 0 15px #c70000, 0 0 10px #FFBA42;
    animation: glow-bar-animation 5s ease-in-out infinite;
}

/* Animação para a barra de glow */
@keyframes glow-bar-animation {
    0% {
        background: linear-gradient(90deg, #a30c0c, #FFBA42, #a30c0c);
    }
    50% {
        background: linear-gradient(90deg, #FFBA42, #a30c0c, #FFBA42);
    }
    100% {
        background: linear-gradient(90deg, #a30c0c, #FFBA42, #a30c0c);
    }
}

.footer-container-v2 {
    display: grid;
    /* Cria 3 colunas que se adaptam. Mínimo de 300px, máximo de 1fr (fração do espaço) */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative; /* Garante que fique acima do glow */
    z-index: 2;
}

.footer-col {
    padding: 0 1rem;
}
/* Coluna 1: Marca */
#footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 350px;
}
/* Puxa o estilo do logo que já existe no seu menu.css */
#footer-brand .logo {
    margin-left: 0;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    text-shadow: #760e0e 4px 4px 6px;
}

/* Coluna 2: Links */
.footer-col h4 {
    font-family: "Orbitron", sans-serif;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid #a30c0c;
    padding-bottom: 0.5rem;
    display: inline-block;
}

#footer-links ul {
    list-style: none;
    padding: 0;
}

#footer-links li {
    margin-bottom: 1rem;
}

#footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative; /* Necessário para o ::after funcionar */
    padding-bottom: 3px; /* Espaço para o sublinhado não grudar no texto */
}

/* Cria a linha "escondida" */
#footer-links a::after {
    content: '';
    position: absolute;
    width: 0%; /* Começa com largura 0 */
    height: 2px;
    background-color: #FFBA42; /* Cor dourada */
    bottom: 0;
    left: 0; /* Começa da esquerda */
    transition: width 0.3s ease; /* Anima apenas a largura */
}

#footer-links a:hover {
    color: #FFBA42; /* Destaque dourado */
}

#footer-links a:hover::after {
    width: 100%; /* Expande a linha para 100% no hover */
}

/* Coluna 3: Formulário */
.input-group-v2 {
    margin-bottom: 1.2rem;
}

.input-group-v2 input,
.input-group-v2 textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #444; /* Linha inferior sutil */
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    padding: 0.75rem 0.25rem;
    transition: border-color 0.3s ease;
}

/* Remove o "placeholder" feio do Chrome/Firefox */
.input-group-v2 input::placeholder,
.input-group-v2 textarea::placeholder {
    color: #888;
    opacity: 1;
}

.input-group-v2 input:focus,
.input-group-v2 textarea:focus {
    outline: none;
    border-bottom-color: #FFBA42; /* Foco dourado */
}

.input-group-v2 textarea {
    resize: vertical;
    min-height: 80px;
}

.footer-submit-btn-v2 {
    background-color: #a30c0c;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.footer-submit-btn-v2:hover {
    background-color: #c70000;
    box-shadow: 0 0 15px rgba(163, 12, 12, 0.7);
    transform: translateY(-2px);
}

/* Ícones de Redes Sociais */
.social-links-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links-v2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-v2 a img {
    width: 20px;
    height: 20px;
    filter: invert(100%) brightness(100%); /* Força o ícone a ficar branco */
}

.social-links-v2 a:hover {
    transform: scale(1.1) translateY(-3px);
    /* A mágica de usar a cor da variável definida no HTML */
    background-color: var(--social-color, #a30c0c); 
    box-shadow: 0 0 10px var(--social-color, #a30c0c);
}

/* Copyright */
.footer-bottom-v2 {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    color: #888;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .site-footer-v2 {
        padding: 4rem 1rem 1.5rem 1rem;
    }

    .footer-container-v2 {
        grid-template-columns: 1fr; /* Força 1 coluna */
        gap: 2.5rem;
    }

    #footer-brand {
        text-align: center;
    }
    #footer-brand .logo {
        margin: 0 auto 1rem auto;
    }
    #footer-brand p {
        margin: 0 auto 1.5rem auto;
    }
    .social-links-v2 {
        justify-content: center;
    }

    #footer-form {
    order: -2;
    }
    #footer-brand {
    order: -3;
    }
}
/* ==================== Footer FIM ================= */