@import url(css/login.css);


html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    /* outline: 1px solid red; */
}
:root{
    --colorred--:var(#be0000);
}
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}


.navbar {
    width: 100%;
    background: #0f0f0f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}

/* CONTAINER */
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo img {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
    transition: 0.3s ease;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #bb8031;
    letter-spacing: 1px;
}

.logo:hover img {
    transform: scale(1.05);
}

/* NAV LINKS */
.main-nav {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: 0.3s ease;
}

/* Linha dourada ao passar mouse */
.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #bb8031;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    color: #bb8031;
}

.nav-links li a:hover::after {
    width: 100%;
}
/* ================================
   USER MENU - FontAwesome
=================================== */

.user-menu {
    position: relative;
}

.user-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1b1b1b;
    border: 2px solid #bb8031;
    color: #bb8031;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.user-icon:hover {
    transform: scale(1.1);
    color: #fff;
}

.foto-header {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}


.dropdown-menu {
    position: absolute;
    top: 55px;
    right: 0;
    width: 190px;
    background: #0f0f0f;
    border-radius: 10px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
    z-index: 999999;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    color: #e5e5e5;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}

.dropdown-menu li a:hover {
    background: #bb8031;
    color: #0f0f0f;
}


/* BOTÃO LOGIN PREMIUM */
.btn-login-nav {
    background: #bb8031;
    padding: 8px 16px;
    border-radius: 8px;
    color: #131313 !important;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-login-nav:hover {
    background: #d9a15a;
    color: #131313 !important;
    box-shadow: 0 0 10px #bb8031;
}

/* -----------------------------------------------------
   HAMBURGER MENU (mobile)
----------------------------------------------------- */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Menu ativo */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */
@media (max-width: 860px) {

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0f0f0f;
        padding-top: 3rem;
        transition: 0.4s ease;
        border-left: 1px solid rgba(255,255,255,0.08);
        box-shadow: -4px 0 15px rgba(0,0,0,0.5);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }
}



/* -----------------------------------------------------
   FOOTER MODERNO PREMIUM
----------------------------------------------------- */

.footer {
    background: #0f0f0f;
    padding: 4rem 2rem;
    color: #e5e5e5;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

/* Linha dourada decorativa superior */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #bb8031;
    border-radius: 50px;
}

/* GRID DO FOOTER */
.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

/* TITULOS */
.footer-col h4,
.footer-col h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #bb8031;
    font-family: "Poppins", sans-serif;
}

/* TEXTOS */
.footer-col p {
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Slogan */
.slogan {
    font-style: italic;
    color: #bbbbbb;
    margin-bottom: 1.2rem;
}

/* COPYRIGHT */
.copy {
    margin-top: 1.6rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* LINKS DE REDES SOCIAIS */
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #d9d9d9;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

/* Efeito dourado hover */
.social-links a:hover {
    color: #bb8031;
    padding-left: 6px;
}

/* Efeito underline animado */
.social-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #bb8031;
    transition: 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

/* LOGO A2L */
.a2l-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    color: #d5d5d5;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.a2l-link:hover {
    color: #bb8031;
}

/* Logo com efeito */
.a2l-logo {
    height: 36px;
    opacity: 0.8;
    transition: 0.3s;
}

.a2l-link:hover .a2l-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* -----------------------------------------------------
   RESPONSIVIDADE
----------------------------------------------------- */

@media (max-width: 750px) {
    .footer {
        text-align: center;
    }

    .footer::before {
        width: 80px;
    }

    .footer-grid {
        gap: 2rem;
    }

    .a2l-link {
        justify-content: center;
    }
}



/* --- ANIMAÇÕES (KEYFRAMES E CLASSES) --- */

/* 1. Keyframes de Fade In (entrada suave) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 2. Keyframes de Fade In Up (entrada de baixo para cima) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classe básica para itens animados (escondidos por padrão) */
.animated-item {
    opacity: 0;
}

/* Aplicação das animações no carregamento */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Atrasos nas animações (para que não apareçam todas de uma vez) */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--cor-principal);
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid #333;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links li a {
        padding: 0.8rem;
        display: block;
    }

    /* Animação X do menu */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}