/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 80px; /* Compensar altura do header fixo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #25D366 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* LGPD Alert */
.lgpd-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    z-index: 10001;
    width: 100%;
}

.lgpd-alert__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lgpd-alert__close {
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.lgpd-alert__close:hover {
    background: #25D366;
}

.lgpd-alert.hidden {
    display: none;
}

/* Header Main */
.header-main {
    padding: 5px 0;
}

.header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.header-left {
    justify-self: start;
    display: flex;
    align-items: center;
}

.header-logo {
    justify-self: center;
    text-align: center;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-burger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: white;
    transition: color 0.3s ease;
}

.menu-burger:hover {
    color: #fbbf24;
}

.header-logo .logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

/* Search */
.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-form {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #2563eb;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-section a {
    color: white;
    text-decoration: none;
}

.login-section a:hover {
    text-decoration: underline;
}

.cart-icon {
    position: relative;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Navigation */
.navbar {
    background: #1e3a8a;
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #25D366 0%, #25D366 100%);
    color: white;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #fbbf24;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-brands {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-brands img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-brands img:hover {
    opacity: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Vehicle Types */
.vehicle-types {
    padding: 60px 0;
    background: white;
}

.vehicle-types h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e40af;
}

.vehicle-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: #1e40af;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: #2563eb;
}

.vehicle-grid {
    display: flex;
    gap: 20px;
    flex: 1;
    overflow-x: auto;
    padding: 20px 0;
}

.vehicle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vehicle-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.vehicle-item span {
    font-weight: 600;
    color: #333;
}

/* Promotional Banners */
.promotional-banners {
    padding: 60px 0;
    background: #f8f9fa;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.banner {
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.banner-295 {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.banner-275 {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.banner-12x {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    text-align: center;
}

.banner-pdc {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.banner-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content h3 {
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
}

.banner-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-banner {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-banner:hover {
    background: white;
    color: #3b82f6;
}

.banner-image img {
    max-width: 150px;
    height: auto;
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: white;
}

.brands-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e40af;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* Bestsellers */
.bestsellers {
    padding: 60px 0;
    background: #f8f9fa;
}

.bestsellers h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e40af;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.product-installment {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.btn-add-cart {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
}

.btn-add-cart:hover {
    background: #059669;
}

/* Urgent Section */
.urgent-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 60px 0;
}

.urgent-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.urgent-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.urgent-card {
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.urgent-card:hover {
    transform: scale(1.02);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e40af;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #3b82f6;
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 5px;
}

.testimonial-date {
    color: #666;
    font-size: 0.9rem;
}

/* Features */
.features {
    padding: 60px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e40af;
}

.feature-description {
    color: #666;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #3b82f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #d1d5db;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    
    .header-wrapper {
        grid-template-columns: 1fr auto 1fr;
        gap: 10px;
        padding: 0 10px;
    }
    

    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .vehicle-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        gap: 15px;
    }
    
    .brand-item img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .vehicle-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .vehicle-icon {
        font-size: 2rem;
    }
    
    .banner {
        padding: 20px;
        min-height: 150px;
    }
    
    .banner-content h4 {
        font-size: 1.2rem;
    }
    
    .banner-content h3 {
        font-size: 2rem;
    }





    .banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  gap: 20px; /* espaço entre os banners */
  margin: 20px auto;
  max-width: 1200px; /* centraliza e limita largura */
}

.banner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.banner img:hover {
  transform: scale(1.03);
}



    
}



/* Mobile responsivo para produtos */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas para tablet e mobile */
        gap: 15px;
    }

    .product-card {
        padding: 15px;
    }

    .product-image {
        height: 160px;
    }

    .product-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .product-installment {
        font-size: 0.8rem;
    }

    .btn-add-cart {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas para mobile */
        gap: 10px; /* Espaçamento menor para mobile */
    }

    .product-card {
        padding: 10px;
    }

    .product-image {
        height: 140px;
    }

    .product-title {
        font-size: 0.8rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .product-installment {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .btn-add-cart {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
}



/* Header Scroll Effect */
.header.scrolled {
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled .header-main {
    padding: 3px 0;
}

.header.scrolled .header-logo img {
    max-height: 40px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Ajuste para links âncora */
:target {
    scroll-margin-top: 100px;
}


@media (max-width: 768px) {
    main {
        padding: 0 15px; /* Reduzir o padding horizontal em telas menores */
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 10px; /* Reduzir ainda mais o padding em telas muito pequenas */
    }
}


html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Evita rolagem horizontal */
}

body {
    min-width: 320px; /* Garante um tamanho mínimo para evitar quebras */
}

/* Ajustes para o container principal em telas menores */
@media (max-width: 768px) {
    .container {
        padding: 0 10px; /* Reduzir o padding para usar mais espaço */
    }
}

/* Ajustes para elementos que podem causar overflow */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Garantir que todos os elementos ocupem a largura total disponível */
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Remover margens e paddings excessivos em elementos de layout */
.header, .navbar, .hero-section, .vehicle-types, .promotional-banners, .brands-section, .bestsellers, .urgent-section, .testimonials, .features, .footer {
    width: 100%;
    box-sizing: border-box;
}

/* Ajustes para o header fixo em mobile */
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Ajustar padding-top se o header for menor em mobile */
    }
    .header {
        height: 60px; /* Exemplo: diminuir altura do header em mobile */
    }
    .header-logo img {
        max-height: 40px; /* Ajustar tamanho do logo */
    }
    .search-container {
        margin: 10px 0; /* Ajustar margem do search container */
    }
    .header-wrapper {
        padding: 0 10px; /* Adicionar padding ao wrapper do header */
    }
}

/* Garantir que o menu mobile não cause overflow */
.nav-menu {
    flex-direction: column;
    width: 100%;
}

.nav-item {
    width: 100%;
}

.dropdown-menu {
    position: static; /* Mudar para estático em mobile para não flutuar */
    width: 100%;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding-left: 30px; /* Indentar itens do dropdown */
}

/* Ajustes para o carrossel de veículos */
.vehicle-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Rolagem suave em iOS */
    scrollbar-width: none; /* Esconder scrollbar no Firefox */
}

.vehicle-carousel::-webkit-scrollbar {
    display: none; /* Esconder scrollbar no Chrome/Safari */
}

.vehicle-grid {
    flex-wrap: nowrap;
    justify-content: flex-start; /* Alinhar itens à esquerda */
}

.vehicle-item {
    flex-shrink: 0; /* Evitar que os itens encolham */
    width: 150px; /* Largura fixa para itens do carrossel */
}

/* Ajustes para banners promocionais */
.banners-grid {
    grid-template-columns: 1fr; /* Uma coluna em mobile */
}

.banner {
    flex-direction: column; /* Empilhar conteúdo do banner */
    text-align: center;
}

.banner-image {
    margin-top: 20px;
}

/* Ajustes para grid de produtos */
.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Ajustar min-width para produtos */
}

/* Ajustes para o footer */
.footer-content {
    grid-template-columns: 1fr; /* Uma coluna em mobile */
    text-align: center;
}

.footer-section ul {
    padding: 0;
}

.payment-icons, .social-icons {
    justify-content: center;
}

/* Adicionar um estilo para o body para garantir que o fundo branco não apareça */
body {
    background-color: #f5f5f5; /* Ou a cor de fundo desejada */
}

/* Garantir que nenhum elemento tenha largura maior que 100% da viewport */
* {
    max-width: 100vw;
}

/* Adicionar meta viewport se não estiver presente no HTML */
/* <meta name="viewport" content="width=device-width, initial-scale=1.0"> */
/* Já está presente no index.php */



@media (max-width: 768px) {
    .nav-menu {
        flex-direction: row; /* Exibir itens lado a lado */
        justify-content: space-around; /* Distribuir espaço igualmente */
        flex-wrap: wrap; /* Permitir quebra de linha se necessário */
    }

    .nav-item {
        width: auto; /* Largura automática para os itens */
    }

    .nav-link {
        padding: 10px 15px; /* Ajustar padding para mobile */
    }
}


/* Estilos para seletor de quantidade nos produtos */
.quantity-selector {
    margin: 15px 0;
    text-align: center;
}

.quantity-selector label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.quantity-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    max-width: 120px;
    margin: 0 auto;
}

.quantity-btn-product {
    background: #3b82f6;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn-product:hover {
    background: #2563eb;
}

.quantity-btn-product:active {
    background: #1d4ed8;
}

.quantity-input {
    border: none;
    width: 50px;
    height: 35px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    background: white;
    outline: none;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Responsividade para controles de quantidade */
@media (max-width: 768px) {
    .quantity-input-group {
        max-width: 100px;
    }
    
    .quantity-btn-product {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .quantity-input {
        width: 40px;
        height: 30px;
        font-size: 12px;
    }
}

/* Estilos para Promoções e Produtos Mais Vendidos */
.product-card {
    position: relative;
    overflow: hidden;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6600;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 1;
}

.product-price-container {
    margin-bottom: 10px;
}

.price-original {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    margin-bottom: 2px;
}

.price-promo {
    color: #ff6600;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.most-sold-section h3 {
    color: #1e40af;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
