/* ========================================
   HOME PAGE - VICENTE
   Design Moderno e Elegante
   ======================================== */

/* Forçar fundo branco em toda a página */
body {
    background: #ffffff !important;
}

/* Container principal para ocupar toda a largura */
.user-profile,
.main-content,
.page-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
}

/* Regras globais para padronizar todas as seções */
.shirts-section,
.pants-section,
.best-sellers-section,
.new-arrivals-section,
.featured-section {
    padding: 3rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.shirts-section .section-header,
.pants-section .section-header,
.best-sellers-section .section-header,
.new-arrivals-section .section-header,
.featured-section .section-header {
    margin-bottom: 2.5rem !important;
}

.shirts-section .section-title,
.pants-section .section-title,
.best-sellers-section .section-title,
.new-arrivals-section .section-title,
.featured-section .section-title {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

/* Forçar largura total e fundo consistente */
.shirts-section,
.pants-section,
.best-sellers-section {
    background: #ffffff !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.new-arrivals-section,
.featured-section {
    background: #f8f9fa !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    height: 80vh;
    overflow: hidden;
    border-bottom: 1px solid var(--bg-gray);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
}

/* Controle de imagens por dispositivo */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
    }
}

/* Indicadores do carrossel */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}





.hero-image-placeholder {
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.hero-image-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.hero-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-top: var(--spacing-sm);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-normal);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-xxl);
    font-size: 1.1rem;
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    position: relative;
    letter-spacing: -0.5px;
}



.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
}

.ver-tudo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ver-tudo-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.ver-tudo-btn i {
    transition: transform 0.3s ease;
}

.ver-tudo-btn:hover i {
    transform: translateX(5px);
}

/* Categorias */
.categories-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23013c10" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-pattern)"/></svg>');
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.category-card {
    background: var(--bg-white);
    border: none;
    border-radius: 20px;
    padding: var(--spacing-xxl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(1, 60, 16, 0.08);
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 60, 16, 0.02) 0%, rgba(2, 90, 24, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-lighter));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(1, 60, 16, 0.15);
}

.category-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 25px rgba(1, 60, 16, 0.2);
}

.category-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(1, 60, 16, 0.3);
}

.category-card:hover .category-icon::before {
    opacity: 1;
}

.category-icon i {
    font-size: 3rem;
    color: var(--text-light);
    transition: transform 0.4s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.1);
}

.category-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.category-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.9;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(1, 60, 16, 0.1);
    position: relative;
    overflow: hidden;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.category-link:hover::before {
    left: 100%;
}

.category-link:hover {
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 60, 16, 0.25);
    gap: var(--spacing-md);
}

/* Produtos */
.featured-section, .new-arrivals-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="product-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23013c10" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23product-pattern)"/></svg>');
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
    width: 100%;
}

.products-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--spacing-lg);
    width: 100%;
}

.product-card {
    background: var(--bg-white);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(1, 60, 16, 0.08);
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 580px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 60, 16, 0.02) 0%, rgba(2, 90, 24, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(1, 60, 16, 0.15);
}

.product-card-small {
    min-height: 540px;
}

.product-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(1, 60, 16, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image-placeholder {
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-placeholder {
    transform: scale(1.05);
}

.product-image-placeholder i {
    font-size: 4.5rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-card:hover .product-image-placeholder i {
    opacity: 1;
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-badge-sale {
    background: linear-gradient(135deg, var(--accent-red) 0%, #e74c3c 100%);
}

.product-badge-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
}

.product-badge-new {
    background: linear-gradient(135deg, var(--accent-green) 0%, #27ae60 100%);
}

.product-info {
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xxl);
    position: relative;
    z-index: 2;
    background: var(--bg-white);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.product-category {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.product-price-old {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}

.product-price-current {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.product-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

/* Features */
.features-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="features-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23013c10" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23features-pattern)"/></svg>');
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: 16px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(1, 60, 16, 0.06);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 60, 16, 0.02) 0%, rgba(2, 90, 24, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(1, 60, 16, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(1, 60, 16, 0.15);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(1, 60, 16, 0.25);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.2px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Newsletter */
.newsletter-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.newsletter-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    max-width: 450px;
}

.newsletter-input-group {
    display: flex;
    gap: var(--spacing-sm);
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
}

.newsletter-input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-primary);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: rgba(1, 60, 16, 0.6);
}

/* ========================================
   SEÇÃO DE NOVIDADES - LARGURA TOTAL
   ======================================== */

/* Seção de Novidades - Largura Total */
.new-arrivals-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #f8f9fa;
    padding: 3rem 0 !important;
    position: relative;
}

.new-arrivals-container {
    max-width: 100%;
    padding: 0 0.5rem !important;
    position: relative;
}

/* Badge Novo */
.badge-new {
    background: #28a745;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title-accent {
        font-size: 3.2rem;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Padronizar espaçamento das seções */
    .new-arrivals-section,
    .shirts-section,
    .pants-section,
    .best-sellers-section,
    .featured-section {
        padding: 2rem 0;
    }
    
    .new-arrivals-container,
    .featured-container {
        padding: 0 0.375rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title-accent {
        font-size: 2.6rem;
    }
    
    .hero-image {
        height: 280px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 380px;
    }
    
    .product-card {
        min-height: 650px;
    }
    
    .product-info {
        padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xxl);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    /* Padronizar espaçamento das seções em mobile */
    .new-arrivals-section,
    .shirts-section,
    .pants-section,
    .best-sellers-section,
    .featured-section {
        padding: 2rem 0;
    }
    
    .new-arrivals-container,
    .featured-container {
        padding: 0 0.375rem;
    }
}

/* ========================================
   CARROSSEL DE PRODUTOS EM DESTAQUE
   ======================================== */

/* Seção de Destaque - Largura Total */
.featured-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: white;
    padding: 3rem 0 !important;
    position: relative;
}

.featured-container {
    max-width: 100%;
    padding: 0 0.5rem !important;
    position: relative;
}

/* Header da Seção */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem !important;
}

.section-title-wrapper {
    flex: 0 0 auto;
    padding-left: 0;
}

.section-actions {
    flex-shrink: 0;
    margin-left: auto;
}

.ver-tudo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ver-tudo-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ver-tudo-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.ver-tudo-btn:hover i {
    transform: translateX(3px);
}

.section-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0 !important;
    line-height: 1.2 !important;
}

/* Container do Carrossel */
.products-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0 60px;
    overflow: visible;
    width: 100%;
}

/* Navegação do Carrossel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e9ecef;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #000000;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carrossel */
.products-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    margin: 0;
    width: 100%;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

/* Cards do Carrossel */
.product-card-carousel {
    flex: 0 0 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    margin-right: 20px;
    min-width: 380px;
    cursor: pointer;
}

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

.product-card-carousel:active {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Imagem do Produto */
.product-image-carousel {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-carousel:hover .product-image-carousel img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 3rem;
}

/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-featured {
    background: #ffd700;
    color: #333;
}

.badge-new {
    background: #007bff;
    color: white;
}

.badge-off {
    background: #dc3545;
    color: white;
}

/* Rating Badge */
.product-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-rating-badge i {
    color: #ffd700;
    font-size: 0.7rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Quick Buy Button */
.quick-buy-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-buy-btn:hover {
    background: #333333;
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Informações do Produto */
.product-info-carousel {
    padding: 15px;
}

/* Categoria do Produto */
.product-category {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-name-carousel {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.product-card-carousel:hover .product-name-carousel {
    color: #333333;
}

/* Preços */
.product-price-carousel {
    margin-bottom: 15px;
}

.price-original {
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-final {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.price-installments {
    font-size: 0.8rem;
    color: #6c757d;
}



/* Responsividade */
@media (max-width: 768px) {
    .hero-carousel {
        height: 85vh;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .featured-container,
    .new-arrivals-container {
        padding: 0 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .products-carousel-container {
        margin: 0;
        padding: 0 40px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .product-card-carousel {
        flex: 0 0 340px;
        margin-right: 15px;
        min-width: 340px;
    }
    
    .product-image-carousel {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 80vh;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .featured-container,
    .new-arrivals-container {
        padding: 0 15px;
    }
    
    .products-carousel-container {
        padding: 0 30px;
    }
    
    .product-card-carousel {
        flex: 0 0 300px;
        margin-right: 10px;
        min-width: 300px;
    }
    
    .product-image-carousel {
        height: 320px;
    }
    
    .product-info-carousel {
        padding: 12px;
    }
    
    .product-name-carousel {
        font-size: 0.9rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
    .hero-carousel {
        height: 85vh;
    }
    
    .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
}

/* ========================================
   BANNERS DE BENEFÍCIOS
   ======================================== */

/* Ocultar em dispositivos móveis */
.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

.benefits-section {
    padding: 4rem 0;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #dee2e6 transparent;
}

.benefits-grid::-webkit-scrollbar {
    height: 6px;
}

.benefits-grid::-webkit-scrollbar-track {
    background: transparent;
}

.benefits-grid::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 3px;
}

.benefits-grid::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    min-width: 0;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-item:hover .benefit-icon {
    background: #000000;
    transform: scale(1.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: white;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.benefit-subtitle {
    margin: 0;
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.2;
}

/* Responsividade */
@media (max-width: 1024px) {
    .benefits-grid {
        gap: 2rem;
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .benefit-item {
        gap: 0.75rem;
        padding: 1.25rem 0;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon i {
        font-size: 1.15rem;
    }
    
    .benefit-title {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .benefit-subtitle {
        font-size: 0.8rem;
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .benefit-item {
        gap: 0.75rem;
        padding: 1rem 0.75rem;
        text-align: center;
        flex-direction: column;
        flex: 0 0 auto;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .benefit-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    
    .benefit-icon i {
        font-size: 1.1rem;
    }
    
    .benefit-content {
        text-align: center;
        align-items: center;
        gap: 0.5rem;
    }
    
    .benefit-title {
        font-size: 0.85rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .benefit-subtitle {
        font-size: 0.75rem;
        font-weight: 500;
        color: #555;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 2rem 0;
    }
    
    .benefits-grid {
        gap: 1.5rem;
        padding: 0 0.75rem;
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        max-width: 100%;
    }
    
    .benefit-item {
        gap: 0.5rem;
        padding: 0.75rem 0.5rem;
        text-align: center;
        flex-direction: column;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
    
    .benefit-content {
        text-align: center;
        align-items: center;
        gap: 0.25rem;
    }
    
    .benefit-title {
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .benefit-subtitle {
        font-size: 0.75rem;
        font-weight: 500;
        color: #555;
        line-height: 1.2;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
    .benefits-section {
        padding: 1.5rem 0;
    }
    
    .benefits-grid {
        gap: 1rem;
        padding: 0 0.5rem;
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    
    .benefit-icon i {
        font-size: 1.1rem;
    }
    
    .benefit-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-subtitle {
        font-size: 0.8rem;
    }
}

/* Dispositivos de tamanho médio - otimização específica */
@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem 0;
        min-width: 200px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-subtitle {
        font-size: 0.85rem;
    }
}

/* ========================================
   BANNERS PROMOCIONAIS
   ======================================== */

.promotional-banners {
    padding: 4rem 0;
    background: #f8f9fa;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    aspect-ratio: 16/12;
}

.promo-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-banner:hover .banner-image img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-description {
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-btn:hover {
    background: white;
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
}

.banner-btn i {
    transition: transform 0.3s ease;
}

.banner-btn:hover i {
    transform: translateX(4px);
}

/* Responsividade dos Banners */
@media (max-width: 1024px) {
    .banners-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .banner-overlay {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.3rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .promotional-banners {
        padding: 3rem 0;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .promo-banner {
        aspect-ratio: 21/14;
    }
    
    .banner-overlay {
        padding: 1.25rem;
    }
    
    .banner-title {
        font-size: 1.2rem;
    }
    
    .banner-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .banner-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .promotional-banners {
        padding: 2rem 0;
    }
    
    .banners-grid {
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .banner-overlay {
        padding: 1rem;
    }
    
    .banner-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .banner-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .banner-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   SEÇÃO DE CAMISAS
   ======================================== */

/* Seção de Camisas - Largura Total */
.shirts-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #ffffff;
    padding: 3rem 0;
    position: relative;
}

.shirts-container {
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
}

/* Responsividade da Seção de Camisas */
@media (max-width: 768px) {
    .shirts-section {
        padding: 3rem 0;
    }
    
    .shirts-section .section-title {
        font-size: 2rem;
    }
    
    .shirts-section .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .shirts-section {
        padding: 2rem 0;
    }
    
    .shirts-section .section-title {
        font-size: 1.75rem;
    }
    
    .shirts-section .section-header {
        margin-bottom: 1.5rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
    .shirts-section {
        padding: 1.5rem 0;
    }
    
    .shirts-section .section-title {
        font-size: 1.5rem;
    }
    
    .shirts-section .section-header {
        margin-bottom: 1rem;
    }
}

/* ========================================
   SEÇÃO DE CALÇAS
   ======================================== */

/* Seção de Calças - Largura Total */
.pants-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #ffffff;
    padding: 3rem 0;
    position: relative;
}

.pants-container {
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
}

/* Responsividade da Seção de Calças */
@media (max-width: 768px) {
    .pants-section {
        padding: 3rem 0;
    }
    
    .pants-section .section-title {
        font-size: 2rem;
    }
    
    .pants-section .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .pants-section {
        padding: 2rem 0;
    }
    
    .pants-section .section-title {
        font-size: 1.75rem;
    }
    
    .pants-section .section-header {
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   SEÇÃO DE SHORTS
   ======================================== */

/* Seção de Shorts - Largura Total */
.shorts-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #ffffff;
    padding: 3rem 0 !important;
    position: relative;
}

.shorts-container {
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
}

/* Recuo leve do título apenas nesta seção */
.shorts-section .section-title-wrapper {
    padding-left: 12px;
}

/* ========================================
   SEÇÃO DE CALÇADOS
   ======================================== */

/* Seção de Calçados - Largura Total */
.shoes-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #ffffff;
    padding: 3rem 0 !important;
    position: relative;
}

.shoes-container {
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
}

.shoes-section .section-title-wrapper {
    padding-left: 20px;
}

/* ========================================
   SEÇÃO DE MAIS VENDIDOS
   ======================================== */

/* Seção de Mais Vendidos - Largura Total */
.best-sellers-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #f8f9fa;
    padding: 3rem 0;
    position: relative;
}

.best-sellers-container {
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
}

/* Badge Mais Vendido */
.badge-best-seller {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Responsividade da Seção de Mais Vendidos */
@media (max-width: 768px) {
    .best-sellers-section {
        padding: 3rem 0;
    }
    
    .best-sellers-section .section-title {
        font-size: 2rem;
    }
    
    .best-sellers-section .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .best-sellers-section {
        padding: 2rem 0;
    }
    
    .best-sellers-section .section-title {
        font-size: 1.75rem;
    }
    
    .best-sellers-section .section-header {
        margin-bottom: 1.5rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
    .new-arrivals-section,
    .shirts-section,
    .best-sellers-section {
        padding: 1.5rem 0;
    }
    
    .new-arrivals-container {
        padding: 0 0.25rem;
    }
    
    .featured-container {
        padding: 0 0.25rem;
    }
    
    .best-sellers-section .section-title,
    .shirts-section .section-title,
    .pants-section .section-title {
        font-size: 1.5rem;
    }
    
    .best-sellers-section .section-header,
    .shirts-section .section-header,
    .pants-section .section-header {
        margin-bottom: 1rem;
    }
    
    .shirts-container,
    .pants-container,
    .best-sellers-container {
        padding: 0 0.25rem;
    }
}

/* ========================================
   VARIAÇÕES DOS PRODUTOS
   ======================================== */

/* Container das variações */
.product-variations {
    margin: 8px 0;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
}

/* Cores disponíveis */
.variation-colors {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.variation-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    min-width: 45px;
}

.color-dots {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Tamanhos disponíveis */
.variation-sizes {
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.size-tag {
    background: #f8f9fa;
    color: #333;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.size-tag:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Responsividade para as variações */
@media (max-width: 768px) {
    .product-variations {
        margin: 6px 0;
        padding: 6px 0;
    }
    
    .variation-colors,
    .variation-sizes {
        gap: 6px;
    }
    
    .variation-label {
        font-size: 0.7rem;
        min-width: 40px;
    }
    
    .color-dot {
        width: 14px;
        height: 14px;
    }
    
    .size-tag {
        font-size: 0.65rem;
        padding: 1px 5px;
    }
}

@media (max-width: 480px) {
    .product-variations {
        margin: 4px 0;
        padding: 4px 0;
    }
    
    .variation-colors,
    .variation-sizes {
        gap: 4px;
    }
    
    .variation-label {
        font-size: 0.65rem;
        min-width: 35px;
    }
    
    .color-dot {
        width: 12px;
        height: 12px;
    }
    
    .size-tag {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}
