*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.hamburguer {
    display: none; /* Escondendo botão sem uso */
}

header {
    height: 80px;
    width: 100%;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 50px;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    height: 70px;
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #f0a500;
}

.logo img{
    max-height: 60px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    max-height: 50px;
}

.nav-link{
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f0a500;
    transition: width 0.3s ease;
}

.nav-link a:hover{
    color: #f0a500;
}

.nav-link a:hover::after {
    width: 100%;
}

.menu-toggle{
    display: none;
    cursor: pointer;
}

.menu-toggle i{
    font-size: 24px;
    color: white;
}

@media (max-width: 768px){
    .navbar { padding: 15px 20px; }
    .navbar.scrolled { padding: 10px 20px; }

    .nav-link{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #050505;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        gap: 40px;
    }

    .nav-link.active{
        right: 0;
    }

    .nav-link a {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .menu-toggle{
        display: block;
    }
}

.hero-services {
    height: 40vh; /* Mais curto, formato panorâmico */
    min-height: 350px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax Premium */
    background-repeat: no-repeat;
    margin-top: 80px; /* Espaço exato do menu fixo */
}

.hero-content {
    opacity: 0;
    animation: subirSuave 1s ease forwards 0.2s;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #f0a500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 15px;
}

@keyframes subirSuave {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

footer{
    background-color: #111;
    color: #fff;
    padding: 40px 20px 20px;
    border-top: 1px solid #222;
}

.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3{
    margin-bottom: 15px;
    font-size: 18px;
    color: #f0a500;
    text-transform: uppercase;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column a:hover {
    color: #f0a500;
}

.footer-column p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-botton{
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #222;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
}

/* ==== LAYOUT DA LOJA FÍSICA ==== */
.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

/* Linha Dourada para Títulos */
.linha {
    width: 60px;
    border-bottom: 4px solid #f0a500;
    margin-bottom: 20px;
}

/* Sessão de Localização (Lado a Lado) */
.store-location {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer 1s ease forwards 0.3s;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

.location-text h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.location-text p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.location-text strong {
    color: #f0a500;
}

.location-text .phone {
    font-size: 1.2rem;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #fff;
}

.location-map {
    flex: 1;
    min-width: 300px;
}

.location-map iframe {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    min-height: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Sessão de Conceito (Lado a Lado) */
.store-concept {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer 1s ease forwards 0.6s;
}

.concept-text {
    flex: 1;
    min-width: 300px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.05);
}

.concept-text h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.concept-text p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.concept-text .highlight {
    color: #f0a500;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 20px;
}

.concept-image {
    flex: 1;
    min-width: 300px;
}

.concept-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border-bottom: 3px solid #f0a500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
