/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo {
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.navbar a:hover {
    color: #ff6600;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #000, #111);
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.shine-text {
    background: linear-gradient(90deg, #fff, #ff6600, #fff);
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 5s infinite linear;
    background-size: 200% 100%;
}

@keyframes shine {
    from {
        background-position: 200% center;
    }

    to {
        background-position: -200% center;
    }
}

.hero .buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botões com Tamanho Ajustado */
.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff6600;
    color: #fff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: #e55c00;
    box-shadow: 0 0 15px #ff6600;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #222;
    color: #fff;
    border: 1px solid #444;
}

.btn-secondary:hover {
    background: #333;
    box-shadow: 0 0 10px #555;
    transform: translateY(-2px);
}

/* Seções Padrão */
.estilos,
.numbers,
.inspiracoes,
.footer {
    padding: 5rem 2rem;
    text-align: center;
}

.estilos h2,
.numbers h2,
.inspiracoes h2,
.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Estilos (Cards) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.card span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 2px 2px 8px #000;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
}

.card:hover img {
    opacity: 0.9;
}

/* Numbers */
.numbers {
    padding: 5rem 2rem;
    text-align: center;
    background: #111;
}

.number-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.num-item {
    font-size: 1.5rem;
    font-weight: bold;
}

.num-item span {
    font-size: 3rem;
    color: #ff6600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 12px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #222;
}

.footer h2 {
    color: #ff6600;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer Lojas (ATUALIZADO) */
.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.loja-item {
    background: #111;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.loja-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.loja-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.loja-item p {
    margin-bottom: 0.5rem;
    color: #ccc;
    min-height: 40px;
}

.loja-item .telefone {
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.loja-botoes {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-whatsapp,
.btn-mapa {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 0.9rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.btn-mapa {
    background: #4285F4;
    color: #fff;
}

.btn-mapa:hover {
    background: #3367D6;
    transform: scale(1.05);
}

.copyright {
    margin-top: 2rem;
    color: #888;
    font-size: 0.9rem;
}

/* Logo na Seção Hero (Simplificado) */
.hero-logo {
    height: 150px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

/* --- ESTILOS PARA O POP-UP (MODAL) DO WHATSAPP (ATUALIZADO) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid #333;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-content h2 {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 0.5rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.modal-lojas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.loja-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 1rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.loja-link:hover {
    background: #128c7e;
    transform: scale(1.03);
}

.loja-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.loja-link div {
    display: flex;
    flex-direction: column;
}

.loja-link-phone {
    font-size: 0.8rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Media Queries para Responsividade --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        height: 120px;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .estilos h2,
    .numbers h2,
    .inspiracoes h2,
    .footer h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        height: 100px;
    }

    .navbar ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .number-grid {
        gap: 2rem;
    }

    .num-item span {
        font-size: 2.5rem;
    }

    .num-item {
        font-size: 1.2rem;
    }
}