/* 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: 100vh;
    background: none;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
}

.banner-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
    z-index: 1;
}

.title {
    background: linear-gradient(-45deg, #f0a51a, #ebcc45, #c52700, #e5fd60, #b36e07, #f8be8e, #ad5c00);
    background-size: 400% 400%;
    background-position: 0% 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neon-shimmer 2s ease infinite;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    font-weight: bold;
}

@keyframes neon-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.subtitle {
    color: #fff;
    max-width: 500px;
    margin: 1rem 0;
    text-align: center;
}

/* BOTÃO VER PRODUTOS */
.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Eurostile Extended', 'Magistral', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

.btn-12 {
    position: relative;
    right: 20px;
    bottom: 20px;
    border: none;
    box-shadow: none;
    width: 130px;
    height: 40px;
    line-height: 42px;
    -webkit-perspective: 230px;
    perspective: 230px;
}

.btn-12 span {
    background: rgb(0, 172, 238);
    background: linear-gradient(0deg, #c52700 0%, #b36e07 100%);
    display: block;
    position: absolute;
    width: 130px;
    height: 40px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    border-radius: 5px;
    margin: 0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-12 span:nth-child(1) {
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12:hover span:nth-child(1) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.btn-12:hover span:nth-child(2) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    color: transparent;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}

/* FIM DO BOTÃO VER PRODUTOS */

.banner-img.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
}

/* MAIN E GRID DE PRODUTOS */
.main-custom {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;

}

#produtos {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #F28907;
    text-align: center;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;

}

.produto-card {
    min-height: 450px;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.produto-card img {
    height: 250px;
    width: 100%;
    object-fit: contain;
    background-color: #f8f8f8;
    padding: 10px;
}

.produto-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(242, 137, 7, 0.15);
}

.produto-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.produto-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.produto-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #F28907;
}

.produto-info p {
    flex: 1;
    color: #F2BB77;
    margin-bottom: 1rem;
}

.produto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preco {
    font-weight: bold;
    color: #fff;
}

.btn-adicionar {
    background: #F28907;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-adicionar:hover {
    background: #F25C05;
}

.card-img-mjb {
    width: 50%;
}

/* BOTÕES DE CONTATO */

section.contato {
    background-color: #fff;
    padding: 80px 0;
    color: #000;
    margin-bottom: 0;
}

.txt-contato,
.icons-contato {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.txt-contato h3,
p {
    padding-left: 30px;
}

.contato,
.txt-contato h3 {
    font-size: 2.5rem;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contato,
.txt-contato p {
    font-size: medium;
}

.contato .icons-contato a {
    text-decoration: none;
}

.contato .icons-contato button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: transparent;
    border: 2px solid #000;
    cursor: pointer;
    transition: .5s;
}

.contato .icons-contato button i {
    font-size: 20px;
}

.contato .icons-contato button:hover {
    background-color: #F28907;
    color: #fff;
}

/* SEÇÃO 'SOBRE' */
section.sobre {
    height: 600px;
    background-image: url(../images/dbz-wallpaper.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
    margin-top: 0;
}

.sobre>.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000b9;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sobre>.interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    position: relative;
}

.sobre h3 {
    font-size: 3em;
    line-height: 50px;
    font-weight: 100;
}

.sobre h3 span {
    display: block;
    font-weight: 700;
}

.sobre p {
    margin: 20px 0;
    font-size: 20px;
    font-weight: 300;
}

/* Sobre-nós 'button' */
.wrapper {
    padding-top: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.link_wrapper {
    position: relative;
}

.about {
    display: block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    text-decoration: none;
    background: #F28907;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .35s;
}

.icon {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    position: absolute;
    transform: rotate(45deg);
    right: 0;
    top: 0;
    z-index: -1;
    transition: all .35s;
}

.icon svg {
    width: 30px;
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    transform: rotate(-45deg);
    fill: #F28907;
    transition: all .35s;
}

.about:hover {
    width: 200px;
    border: 3px solid #F28907;
    background: transparent;
    color: #F28907;
}

.about:hover+.icon {
    border: 3px solid #F28907;
    right: -25%;
}

/* FOOTER */
.footer-custom {
    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;
}

/* RESPOSIVIDADE */

@media (min-width: 768px) {
    .banner-img {
        display: block;
    }
}