
.dm-sans-<uniquifier {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: #E50914;
    color: white;
    font-size: 0.9rem;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.free-shipping {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-tag {
    background-color: #000;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    margin-left: 5px;
}

/* Main Navbar */
.navbar {
    background-color: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 245px;
    height: 50px;

}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff 70%, #E50914 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-family: 'DM sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #E50914;
}

.nav-item.has-dropdown::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 3px;
    display: inline-block;
    transition: transform 0.3s;
}

.search-container {
    position: relative;
    width: 200px;
}

.search-input {
    width: 100%;
    padding: 8px 15px 8px 35px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    transition: width 0.3s;
}

.search-input:focus {
    width: 250px;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-icon:hover {
    color: #E50914;
}

.cart-count {
    background-color: #E50914;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* banner carrosel */



.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Dropdowns - Will be shown with JavaScript */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #E50914;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .search-container {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
/* Parte do banner e carrosel css*/

.carousel-container {
            position: relative;
            max-width: 1902px;
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 820px;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .carousel-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            font-size: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
            z-index: 10;
        }

        .carousel-control:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .carousel-control.prev {
            left: 20px;
        }

        .carousel-control.next {
            right: 20px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-indicator.active {
            background-color: white;
        }

        @media (max-width: 768px) {
            .carousel {
                height: 400px;
            }
            
            .carousel-control {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .carousel {
                height: 300px;
            }
            
            .carousel-caption h3 {
                font-size: 1.2rem;
            }
        }
.bloco-preto-produtos1 {
    background-color: rgb(8 8 8);
    max-width: 1902px;
    height: 120vh;
}


.oswald-<uniquifier {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* css dos produtos da tela inicial/ com carrosel*/

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #000; /* Fundo preto */
        }

        .carousel-container1 {
            max-width: 80%; /* Ocupa toda a largura disponível */
            margin: 50px auto;
            position: relative;
        }

        .carousel-title {
            font-size: 36px;
            color: #fff; /* Cor do título */
            text-align: left; /* Alinhado à esquerda */
            margin-bottom: 10px;
            margin-left: 20px; /* Margem à esquerda */
            text-transform: uppercase; /* Título em caixa alta */
            font-family: 'Oswald', sans-serif;
            margin: 25px;
            margin-top: 35px;
        }

        .products-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 30px;
            gap: 30px; /* Espaçamento entre os produtos */
            scrollbar-width: none; /* Esconde a barra padrão no Firefox */
        }

        .products-carousel::-webkit-scrollbar {
            display: none; /* Esconde a barra padrão no Chrome/Safari */
        }

        .product-card {
            flex: 0 0 300px; /* Aumenta o tamanho do produto */
            height: 504px;
            background: #181616; /* Cor do bloco */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between; /* Preenche o espaço verticalmente */
            padding: 10px;
            position: relative; /* Para a etiqueta de desconto */
        }

        .discount-label {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #000; /* Pequeno retângulo preto */
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
        }

        .product-image {
            width: 257px;
            height: 267px;
            object-fit: cover;
            border-radius: 8px; /* Bordas arredondadas */
        }

        .product-info {
            text-align: center; /* Centraliza o texto */
        }

        .product-name {
            font-size: 14px;
            font-weight: 400;
            margin: 30px 0; /* Espaçamento entre o nome e o preço */
            color: #fff; /* Cor do texto */
            font-family: 'Oswald', sans-serif;
            padding: 3px;
        }

        .product-price-old {
            font-size: 14px;
            color: #888;
            margin: 5px 0; /* Espaçamento entre o preço antigo e o novo */
            text-decoration: line-through; /* Risco no preço antigo */
        }

        .product-price-new {
            font-size: 23px;
            font-weight: bold;
            color: red;
            margin:8px 0; /* Espaçamento entre o preço novo e as parcelas */
            
        }

        .installments {
            font-size: 14px;
            color: #fff; /* Cor do texto */
            margin: 5px 0; /* Espaçamento entre as parcelas e o botão */
        }

        .buy-button {
            width: 257px;
            height: 56px;
            background-color: red;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .buy-button:hover {
            background-color: darkred;
        }

        /* Barra de rolagem personalizada */
        .custom-scrollbar {
            height: 6px;
            background: #e0e0e0;
            border-radius: 3px;
            margin: 10px 20px 0;
            position: relative;
            cursor: pointer;
        }

        .scroll-thumb {
            height: 100%;
            background: #555;
            border-radius: 3px;
            position: absolute;
            top: 0;
            left: 0;
            width: 80px; /* Largura inicial do thumb */
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .product-card {
                width: 220px;
            }
        }

        @media (max-width: 480px) {
            .product-card {
                width: 180px;
            }
        }
    