/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Eurostile Extended', 'Magistral', sans-serif;
    background: #111;
    color: #fff;
}

/* NAVBAR */
.navbar-custom {
    background: #000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    text-align: center;
    gap: 1.5rem;
    font-weight: 500;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #F28907;
    transition: width 0.3s cubic-bezier(.4, 0, .2, 1), left 0.3s cubic-bezier(.4, 0, .2, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: #F28907;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.actions a.icon-login:hover {
    background: #fff;
    color: #222;
    border: 1px solid #fff;
}

.actions a.icon-cart {
    background: linear-gradient(90deg, #F25C05 60%, #F28907 100%);
    color: #000;
    border: none;
}

.actions a.icon-cart:hover {
    background: linear-gradient(90deg, #F28907 60%, #F25C05 100%);
    color: #fff;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: background 0.2s, color 0.2s;
}

.btn-login:hover {
    background: #fff;
    color: #222;
}

.btn-cart {
    background: linear-gradient(90deg, #F25C05 60%, #F28907 100%);
    color: #000;
    transition: background 0.2s;
}

.btn-cart:hover {
    background: linear-gradient(90deg, #F28907 60%, #F25C05 100%);
}

/* HEADER */
.header-custom {
    position: relative;
    min-height: auto;
    background: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.banner-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3);
}

header .container.my-4 {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* CONTEÚDO PRINCIPAL 'LOGIN' */
.login-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
    background: linear-gradient(180deg, #111 0%, #181818 100%);
}

.login-container {
    background: #1c1c1c;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
}

.login-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.login-container h2 span {
    color: #F28907;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: #ddd;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    border-color: #F28907;
    box-shadow: 0 0 6px rgba(242, 137, 7, 0.6);
    outline: none;
}

.btn {
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 250px;
    cursor: pointer;
    margin: 0 auto;
}

.btn-three {
    color: #FFF;
    transition: all 0.5s;
    position: relative;
}

.btn-three span {
    position: relative;
    z-index: 2;
}

.btn-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #F28907;
    transition: all 0.3s;
}

.btn-three:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.btn-three::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    background-color: #2b5e40;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.2, 1.2);
}

.btn-three:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

.signup-text {
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.signup-text a {
    color: #F28907;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.signup-text a:hover {
    color: #fff;
}

/* animação suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FIM DO CONTEÚDO PRINCIPAL 'LOGIN */

/* FOOTER */
.footer-custom {
    margin-top: 20px;
    background: linear-gradient(180deg, #181818 7%, #F28907 100%);
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
    text-align: center;
    font-family: 'Eurostile Extended', 'Magistral', sans-serif;
    box-shadow: 0 -2px 16px rgba(242, 137, 7, 0.10);
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #F28907;
}

.footer-title {
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin: 0.5rem 0;
}

.footer-social a {
    color: #fff;
    font-size: 2rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: #F28907;
    transform: scale(1.2) rotate(-8deg);
}

.footer-copy {
    font-size: 1rem;
    color: #F2BB77;
    margin-top: 0.5rem;
}