/*
Theme Name: Tutti Pijamas - Tema Corrigido
Description: Tema WordPress baseado no layout TuttiAmi.com.br com identidade visual Tutti Pijamas
Version: 2.0
Author: Manus AI
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 0.875rem;
    text-align: center;
    color: #666;
}

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.main-navigation a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #e91e63, #f06292);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    border: 2px solid transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    background: linear-gradient(135deg, #ad1457, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    border-color: #fff;
}

.main-navigation li:nth-child(1) a {
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.main-navigation li:nth-child(2) a {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.main-navigation li:nth-child(3) a {
    background: linear-gradient(135deg, #673ab7, #9575cd);
}

.main-navigation li:nth-child(4) a {
    background: linear-gradient(135deg, #3f51b5, #7986cb);
}

.main-navigation li:nth-child(5) a {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
}

.main-navigation li:nth-child(6) a {
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
}

.main-navigation li:nth-child(7) a {
    background: linear-gradient(135deg, #4caf50, #81c784);
}

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

.cart-icon {
    position: relative;
    padding: 10px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: #c2185b;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: #f8f9fa;
    color: #e91e63;
}

/* Barra de Benefícios */
.benefits-bar {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.benefit-content p {
    font-size: 0.75rem;
    color: #666;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.breadcrumb-item {
    font-size: 0.875rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: #e91e63;
}

/* Layout Principal */
.main-content {
    padding: 30px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
}

/* Filtros Laterais */
.shop-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 120px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e91e63;
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    color: #666;
    width: 100%;
    text-align: left;
}

.filter-btn-option:hover {
    border-color: #e91e63;
    background: #fce4ec;
    color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.filter-btn-option.active {
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-color: #e91e63;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.filter-btn-option.active:hover {
    background: linear-gradient(135deg, #ad1457, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.filter-name {
    font-weight: 500;
    flex: 1;
}

.filter-count {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.filter-btn-option.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.filter-btn-option:not(.active) .filter-count {
    background: #f0f0f0;
    color: #999;
}

/* Botão de aplicar filtro de preço */
.filter-apply-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.filter-apply-btn:hover {
    background: linear-gradient(135deg, #ad1457, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Área de Produtos */
.shop-main {
    min-height: 500px;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.shop-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.view-btn {
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: #e91e63;
    color: white;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    color: #666;
    font-size: 0.875rem;
}

/* Grid de Produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
}

/* Card de Produto - Baseado no TuttiAmi */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

/* Bordas coloridas como no TuttiAmi */
.product-card:nth-child(4n+1) {
    border-top-color: #ffc107;
}

.product-card:nth-child(4n+2) {
    border-top-color: #2196f3;
}

.product-card:nth-child(4n+3) {
    border-top-color: #e91e63;
}

.product-card:nth-child(4n+4) {
    border-top-color: #4caf50;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
}

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

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

/* Badge numerado como no TuttiAmi */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    text-decoration: none;
    color: inherit;
}

.product-title a:hover {
    color: #e91e63;
}

/* Preços - Igual ao TuttiAmi */
.product-pricing {
    margin-bottom: 15px;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.installments {
    font-size: 0.875rem;
    color: #666;
}

.installments strong {
    color: #333;
}

/* Botão COMPRAR */
.product-cart-section {
    margin-top: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.add-to-cart:active {
    transform: translateY(0);
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.page-numbers {
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e91e63;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e91e63;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

/* Selos de Confiança */
.trust-seals {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #555;
    margin-top: 20px;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #ccc;
}

.trust-seal svg {
    width: 20px;
    height: 20px;
    color: #4caf50;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
    font-size: 0.875rem;
}

/* Responsivida/* Responsividade Mobile - FOCO PRINCIPAL */
@media (max-width: 768px) {
    
    /* Header Mobile */
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .site-logo img {
        height: 45px;
    }
    
    /* Benefícios Mobile */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    /* Layout Mobile */
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-sidebar {
        position: static;
        order: 2;
        margin-top: 20px;
    }
    
    .shop-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    /* Grid Mobile - 2 COLUNAS LADO A LADO - ESPECIFICIDADE MÁXIMA */
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .products-grid,
    ul.products,
    .products,
    .woocommerce .products,
    .woocommerce-page .products,
    body.woocommerce ul.products,
    body.woocommerce-page ul.products {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    /* Cards Mobile Otimizados - ESPECIFICIDADE MÁXIMA */
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product,
    .product-card,
    li.product,
    .products li,
    .woocommerce .products li.product,
    .woocommerce-page .products li.product,
    body.woocommerce ul.products li.product,
    body.woocommerce-page ul.products li.product {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 10px !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    /* Imagens dos produtos mobile */
    .woocommerce ul.products li.product .woocommerce-loop-product__link,
    .woocommerce ul.products li.product a img,
    .product-image,
    .product-card .product-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    /* Informações do produto mobile */
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2,
    .woocommerce ul.products li.product h3,
    .product-title {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin: 8px 0 !important;
        padding: 0 10px !important;
        height: auto !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }
    
    /* Preços mobile */
    .woocommerce ul.products li.product .price,
    .price-current {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin: 5px 0 !important;
        padding: 0 10px !important;
    }
    
    /* Botões mobile */
    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product .add_to_cart_button,
    .add-to-cart {
        width: calc(100% - 20px) !important;
        margin: 10px !important;
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, #e91e63, #f06292) !important;
        color: white !important;
        border: none !important;
        text-transform: uppercase !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        transition: all 0.3s ease !important;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Forçar layout em qualquer contexto */
    body.woocommerce,
    body.woocommerce-page {
        .products {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 15px !important;
        }
        
        .product {
            width: 100% !important;
            float: none !important;
        }
    }
}ust-seals {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .trust-seal {
        font-size: 0.75rem;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    
    .products-grid {
        gap: 10px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.75rem;
    }
    
    .price-current {
        font-size: 1rem;
    }
    
    .installments {
        font-size: 0.7rem;
    }
    
    .add-to-cart {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Estados de Loading */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

/* Utilitários */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.hidden { display: none; }
.visible { display: block; }



/* ===== BANNERS MODERNOS ===== */

/* Hero Section com Banner */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(240, 98, 146, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #e91e63;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Banner Promocional */
.promotional-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
}

.promo-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(240, 98, 146, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-content {
    text-align: center;
    color: white;
    padding: 40px;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.promo-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.promo-cta {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #e91e63;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-cta:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Banner Conforto */
.comfort-banner {
    padding: 80px 0;
    background: white;
}

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

.comfort-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.comfort-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.comfort-features {
    list-style: none;
    margin-bottom: 35px;
}

.comfort-features li {
    color: #333;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 10px;
}

.comfort-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comfort-cta:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: translateY(-2px);
}

.comfort-image {
    position: relative;
}

.comfort-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsividade dos Banners */
@media (max-width: 768px) {
    
    /* Hero Mobile */
    .hero-banner {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Promo Mobile */
    .promo-banner {
        height: 300px;
    }
    
    .promo-overlay {
        width: 100%;
        background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(240, 98, 146, 0.8));
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .promo-subtitle {
        font-size: 1rem;
    }
    
    /* Conforto Mobile */
    .comfort-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .comfort-text h2 {
        font-size: 2rem;
    }
    
    .comfort-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner,
    .promo-banner {
        height: 250px;
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .comfort-text h2 {
        font-size: 1.5rem;
    }
}


/* ===== SEÇÃO DE FORMAS DE PAGAMENTO ===== */
.payment-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 30px 0;
    border-radius: 15px;
    text-align: center;
}

.payment-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods {
    margin-bottom: 40px;
}

.payment-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Mercado Pago */
.mercado-pago {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mp-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mp-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.mp-pago {
    font-size: 1.5rem;
    font-weight: 700;
    color: #009EE3;
}

/* Cartões de Pagamento */
.payment-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.card-item {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.card-item.visa {
    background: linear-gradient(135deg, #1A1F71, #0066CC);
}

.card-item.mastercard {
    background: linear-gradient(135deg, #EB001B, #FF5F00);
}

.card-item.aura {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.card-item.hipercard {
    background: linear-gradient(135deg, #DC143C, #B22222);
}

.card-item.amex {
    background: linear-gradient(135deg, #006FCF, #0047AB);
}

.card-item.boleto {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

/* Selos de Segurança */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.security-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.security-text {
    text-align: left;
    line-height: 1.2;
}

.security-text strong {
    color: #333;
    font-size: 0.9rem;
    font-weight: 700;
}

.security-text span {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsividade da Seção de Pagamento */
@media (max-width: 768px) {
    .payment-section {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    .payment-section h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .mercado-pago {
        flex-direction: column;
        gap: 10px;
    }
    
    .mp-brand,
    .mp-pago {
        font-size: 1.2rem;
    }
    
    .payment-cards {
        gap: 10px;
    }
    
    .card-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .security-item {
        padding: 15px;
        gap: 10px;
        max-width: 280px;
    }
    
    .security-icon {
        width: 40px;
        height: 40px;
    }
    
    .security-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .security-text strong {
        font-size: 0.8rem;
    }
    
    .security-text span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 25px 10px;
    }
    
    .payment-section h3 {
        font-size: 1.3rem;
    }
    
    .payment-cards {
        justify-content: center;
    }
    
    .card-item {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}



/* ===== PÁGINA DE PRODUTO INDIVIDUAL ===== */
.single-product-page {
    background: #fafafa;
    min-height: 100vh;
}

.single-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Galeria de Imagens */
.product-gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-images {
    width: 100%;
    max-width: 500px;
}

.main-image-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.main-product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Informações do Produto */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 10px;
}

.product-price .woocommerce-Price-amount {
    font-size: inherit;
}

.product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.product-short-description {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #e91e63;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.product-purchase-form {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
}

.product-purchase-form .cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-purchase-form .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.product-purchase-form .quantity input {
    width: 80px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-purchase-form .single_add_to_cart_button {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.product-purchase-form .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #ad1457, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.product-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.product-meta > div {
    margin-bottom: 10px;
    color: #666;
}

.product-meta strong {
    color: #333;
}

.product-meta a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

.product-meta a:hover {
    text-decoration: underline;
}

/* Descrição Completa */
.product-description-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.description-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.description-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 2px;
}

.product-full-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.product-full-description p {
    margin-bottom: 20px;
}

.product-full-description ul,
.product-full-description ol {
    margin: 20px 0;
    padding-left: 30px;
}

.product-full-description li {
    margin-bottom: 8px;
}

/* Seções Adicionais */
.product-tabs-section,
.related-products-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
    .single-product-wrapper {
        padding: 20px 15px;
    }
    
    .product-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-images {
        max-width: 400px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .product-purchase-form {
        padding: 20px;
    }
    
    .product-description-section,
    .product-tabs-section,
    .related-products-section {
        padding: 25px;
    }
    
    .description-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .single-product-wrapper {
        padding: 15px 10px;
    }
    
    .product-main-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .product-images {
        max-width: 300px;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 50px;
    }
    
    .product-purchase-form .quantity {
        flex-direction: column;
        gap: 10px;
    }
    
    .description-title {
        font-size: 1.4rem;
    }
    
    .product-full-description {
        font-size: 1rem;
    }
}


/* ===== FILTROS EXPANSÍVEIS ===== */
.expandable-filter {
    margin-bottom: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.expandable-filter:hover {
    border-color: #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.filter-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-toggle:hover {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
}

.filter-toggle.active {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
}

.filter-toggle .filter-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.filter-toggle.active .toggle-icon {
    transform: rotate(45deg);
    background: rgba(255,255,255,0.3);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #fafafa;
}

.filter-content.expanded {
    max-height: 500px;
    padding: 20px;
}

.filter-content .filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-content .filter-btn-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
}

.filter-content .filter-btn-option:hover {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border-color: #e91e63;
    transform: translateX(5px);
}

.filter-content .filter-btn-option.active {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border-color: #e91e63;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
}

.filter-content .filter-name {
    font-weight: 500;
}

.filter-content .filter-count {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.filter-btn-option:hover .filter-count,
.filter-btn-option.active .filter-count {
    background: rgba(255,255,255,0.3);
}

/* Filtro de Preço Expansível */
.filter-content .price-filter {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

.filter-content .price-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-content .price-inputs input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.filter-content .price-inputs input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.filter-content .filter-apply-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-content .filter-apply-btn:hover {
    background: linear-gradient(135deg, #ad1457, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Animações */
@keyframes expandFilter {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@keyframes collapseFilter {
    from {
        max-height: 500px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

/* Responsividade dos Filtros Expansíveis */
@media (max-width: 768px) {
    .expandable-filter {
        margin-bottom: 15px;
    }
    
    .filter-toggle {
        padding: 12px 15px;
    }
    
    .filter-toggle .filter-title {
        font-size: 1rem;
    }
    
    .toggle-icon {
        font-size: 1.3rem;
        width: 22px;
        height: 22px;
    }
    
    .filter-content.expanded {
        padding: 15px;
    }
    
    .filter-content .filter-btn-option {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .filter-content .price-filter {
        padding: 15px;
    }
    
    .filter-content .price-inputs {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .filter-toggle {
        padding: 10px 12px;
    }
    
    .filter-toggle .filter-title {
        font-size: 0.95rem;
    }
    
    .toggle-icon {
        font-size: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .filter-content.expanded {
        padding: 12px;
    }
    
    .filter-content .filter-btn-option {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .filter-content .filter-count {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}


/* ===== MENU MOBILE COM BOTÕES COLORIDOS ===== */
.mobile-menu-categories {
    padding: 20px 0;
}

.mobile-menu-title {
    color: #e91e63;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-category-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

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

.mobile-nav-btn:hover::before {
    left: 100%;
}

.mobile-nav-btn .btn-icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.mobile-nav-btn .btn-text {
    flex: 1;
    color: inherit;
}

/* Cores específicas para cada botão */
.inicio-btn {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
}

.loja-btn {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    color: white;
}

.pijamas-btn {
    background: linear-gradient(135deg, #673ab7, #9575cd);
    color: white;
}

.acessorios-btn {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
}

.pantufas-btn {
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    color: white;
}

.femininos-btn {
    background: linear-gradient(135deg, #4caf50, #81c784);
    color: white;
}

.contato-btn {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.mobile-nav-btn:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.mobile-nav-btn:active {
    transform: translateX(10px) scale(0.98);
}

/* Menu tradicional como fallback */
.mobile-traditional-menu {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.mobile-traditional-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-traditional-menu li {
    margin-bottom: 10px;
}

.mobile-traditional-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-traditional-menu a:hover {
    background: #f8f9fa;
    color: #e91e63;
    transform: translateX(5px);
}

/* ===== MELHORIAS NA SEÇÃO DE BENEFÍCIOS ===== */
.benefits-bar {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 25px 0;
    border-bottom: 3px solid #e91e63;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #f06292);
    transition: width 0.3s ease;
}

.benefit-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
}

.benefit-icon {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.benefit-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.benefit-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Responsividade melhorada */
@media (max-width: 1200px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .benefits-bar {
        padding: 20px 0;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-item {
        padding: 15px;
        max-width: 100%;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-content h4 {
        font-size: 0.95rem;
    }
    
    .benefit-content p {
        font-size: 0.8rem;
    }
    
    /* Menu mobile melhorado */
    .mobile-category-buttons {
        padding: 0 15px;
        gap: 10px;
    }
    
    .mobile-nav-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-nav-btn .btn-icon {
        font-size: 1.2rem;
        width: 25px;
    }
}

@media (max-width: 480px) {
    .benefits-container {
        gap: 10px;
    }
    
    .benefit-item {
        padding: 12px;
        gap: 12px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-content h4 {
        font-size: 0.9rem;
    }
    
    .benefit-content p {
        font-size: 0.75rem;
    }
    
    .mobile-nav-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-nav-btn .btn-icon {
        font-size: 1.1rem;
        width: 22px;
    }
}

/* ===== ANIMAÇÕES ESPECIAIS ===== */
@keyframes benefitPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.benefit-item:nth-child(1) {
    animation: benefitPulse 3s ease-in-out infinite;
    animation-delay: 0s;
}

.benefit-item:nth-child(2) {
    animation: benefitPulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.benefit-item:nth-child(3) {
    animation: benefitPulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.benefit-item:nth-child(4) {
    animation: benefitPulse 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.benefit-item:nth-child(5) {
    animation: benefitPulse 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* Efeito de brilho nos botões mobile */
@keyframes mobileButtonShine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.mobile-nav-btn {
    background-size: 200% 100%;
    animation: mobileButtonShine 3s ease-in-out infinite;
}

/* Hover especial para telas touch */
@media (hover: none) and (pointer: coarse) {
    .mobile-nav-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .benefit-item:active {
        transform: scale(0.98);
    }
}


/* ===== FOOTER COM FUNDO PRETO E TEXTOS BRANCOS ===== */
.footer-dark {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

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

.footer-dark .footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-dark .footer-logo-img {
    max-height: 50px;
    width: auto;
    /* Remover qualquer filtro que cause quadradinho */
    filter: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

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

.footer-dark .footer-section h3 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e91e63;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-dark .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-dark .footer-section li {
    margin-bottom: 8px;
}

.footer-dark .footer-section a {
    color: #cccccc !important;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-dark .footer-section a:hover {
    color: #e91e63 !important;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-dark .payment-methods {
    background: #111111;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-dark .payment-methods h4 {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.footer-dark .payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-dark .payment-icon {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333333;
    transition: all 0.3s ease;
}

.footer-dark .payment-icon:hover {
    background: #e91e63;
    color: #ffffff;
    transform: scale(1.05);
}

.footer-dark .security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-dark .security-badge {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.footer-dark .security-badge:hover {
    background: #e91e63;
    border-color: #e91e63;
    transform: scale(1.05);
}

.footer-dark .footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-dark .footer-bottom p {
    color: #cccccc !important;
    font-size: 0.9rem;
    margin: 0;
}

.footer-dark .footer-bottom a {
    color: #e91e63 !important;
    text-decoration: none;
}

.footer-dark .footer-bottom a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-dark {
        padding: 30px 0 15px 0;
    }
    
    .footer-dark .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-dark .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-dark .payment-icons {
        gap: 10px;
    }
    
    .footer-dark .payment-icon {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .footer-dark .security-badges {
        gap: 10px;
    }
    
    .footer-dark .security-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .footer-dark .container {
        padding: 0 15px;
    }
    
    .footer-dark .footer-content {
        gap: 15px;
    }
    
    .footer-dark .payment-methods {
        padding: 15px;
    }
    
    .footer-dark .payment-icons {
        gap: 8px;
    }
    
    .footer-dark .security-badges {
        gap: 8px;
    }
}

/* Remover qualquer filtro ou efeito que possa causar quadradinho */
.footer-dark img,
.footer-dark .footer-logo img,
.footer-dark .footer-logo-img {
    filter: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    backdrop-filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
}

/* Garantir que não há elementos com background branco */
.footer-dark *:not(.payment-icon) {
    background-color: transparent !important;
}

.footer-dark .payment-icon {
    background-color: #ffffff !important;
}

/* Animações especiais para o footer */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-dark .footer-section {
    animation: footerFadeIn 0.6s ease-out;
}

.footer-dark .footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-dark .footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-dark .footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-dark .footer-section:nth-child(4) {
    animation-delay: 0.4s;
}


/* ===== SEÇÃO DE CATEGORIAS CENTRALIZADAS ===== */
.categories-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.categories-showcase::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="25" cy="25" r="1" fill="%23e91e63" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23e91e63" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.categories-showcase .container {
    position: relative;
    z-index: 1;
}

.categories-showcase .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-showcase .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    pointer-events: none;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.category-link {
    display: block;
    text-decoration: none;
    color: white;
    height: 100%;
    position: relative;
    z-index: 2;
}

.category-icon,
.category-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-icon .icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 25px 20px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.category-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-count {
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.category-cta {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.category-card:hover .category-cta {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Animações especiais */
@keyframes categoryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.category-card:nth-child(1) {
    animation: categoryFloat 6s ease-in-out infinite;
    animation-delay: 0s;
}

.category-card:nth-child(2) {
    animation: categoryFloat 6s ease-in-out infinite;
    animation-delay: 1s;
}

.category-card:nth-child(3) {
    animation: categoryFloat 6s ease-in-out infinite;
    animation-delay: 2s;
}

.category-card:nth-child(4) {
    animation: categoryFloat 6s ease-in-out infinite;
    animation-delay: 3s;
}

.category-card:nth-child(5) {
    animation: categoryFloat 6s ease-in-out infinite;
    animation-delay: 4s;
}

.category-card:nth-child(6) {
    animation: categoryFloat 6s ease-in-out infinite;
    animation-delay: 5s;
}

/* Responsividade */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .category-card {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .categories-showcase {
        padding: 40px 0;
    }
    
    .categories-showcase .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .categories-showcase .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .category-card {
        max-width: 100%;
    }
    
    .category-icon,
    .category-image {
        height: 100px;
    }
    
    .category-icon .icon {
        font-size: 3rem;
    }
    
    .category-info {
        padding: 20px 15px;
    }
    
    .category-name {
        font-size: 1.2rem;
    }
    
    .category-count {
        font-size: 0.85rem;
    }
    
    .category-cta {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .category-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .category-icon,
    .category-image {
        height: 90px;
    }
    
    .category-icon .icon {
        font-size: 2.5rem;
    }
    
    .category-info {
        padding: 18px 12px;
    }
    
    .category-name {
        font-size: 1.1rem;
    }
}

/* Efeitos especiais de hover */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
    z-index: 3;
}

.category-card:hover::after {
    left: 100%;
}

/* Melhorar acessibilidade */
.category-link:focus {
    outline: 3px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

.category-link:focus .category-card {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/* ===== VERSÃO MOBILE RESPONSIVA IGUAL TUTTIAMI ===== */

/* Configurações globais para evitar "tela dançante" */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== BOTÕES HORIZONTAIS MOBILE (IGUAL TUTTIAMI) ===== */
.mobile-category-buttons-horizontal {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mobile-buttons-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-buttons-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mobile-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    pointer-events: none;
}

.mobile-category-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.mobile-btn-icon {
    font-size: 1.8rem;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.mobile-btn-text {
    text-align: center;
    line-height: 1.1;
    font-size: 0.7rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== RESPONSIVIDADE MOBILE ESTÁVEL ===== */
@media (max-width: 768px) {
    /* Evitar tela dançante */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 0;
        margin: 0;
    }
    
    .hero-banner {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(156, 39, 176, 0.6));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        color: white;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 8px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        opacity: 0.95;
    }
    
    .hero-cta {
        background: rgba(255,255,255,0.2);
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .hero-cta:hover,
    .hero-cta:active {
        background: rgba(255,255,255,0.3);
        transform: scale(1.05);
    }
    
    /* Botões mobile otimizados */
    .mobile-category-buttons-horizontal {
        padding: 10px 0;
        background: #fafafa;
    }
    
    .mobile-buttons-scroll {
        padding: 5px 10px;
        gap: 10px;
    }
    
    .mobile-category-btn {
        min-width: 75px;
        height: 75px;
        border-radius: 12px;
    }
    
    .mobile-btn-icon {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    
    .mobile-btn-text {
        font-size: 0.65rem;
        max-width: 65px;
    }
    
    /* Benefícios mobile */
    .benefits-bar {
        padding: 15px 0;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-item {
        padding: 12px 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-content h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .benefit-content p {
        font-size: 0.75rem;
    }
    
    /* Categorias showcase mobile */
    .categories-showcase {
        padding: 30px 0;
    }
    
    .categories-showcase .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .categories-showcase .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 5px;
    }
    
    .category-card {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .category-icon,
    .category-image {
        height: 80px;
    }
    
    .category-icon .icon {
        font-size: 2.2rem;
    }
    
    .category-info {
        padding: 15px 12px;
    }
    
    .category-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .category-count {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .category-cta {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 8px;
    }
    
    .hero-banner {
        height: 220px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .mobile-category-btn {
        min-width: 70px;
        height: 70px;
        border-radius: 10px;
    }
    
    .mobile-btn-icon {
        font-size: 1.4rem;
    }
    
    .mobile-btn-text {
        font-size: 0.6rem;
        max-width: 60px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ===== PREVENÇÃO DE TELA DANÇANTE ===== */
@media (max-width: 768px) {
    /* Garantir que nenhum elemento cause overflow horizontal */
    * {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Remover margens negativas que podem causar overflow */
    .row,
    .col,
    [class*="col-"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Garantir que containers não excedam a largura da tela */
    .container,
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Evitar elementos que saem da tela */
    .mobile-buttons-scroll {
        width: 100%;
        max-width: calc(100vw - 20px);
    }
    
    /* Smooth scrolling para mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== ANIMAÇÕES OTIMIZADAS PARA MOBILE ===== */
@media (max-width: 768px) {
    /* Reduzir animações em dispositivos móveis para melhor performance */
    *,
    *::before,
    *::after {
        animation-duration: 0.3s !important;
        animation-delay: 0s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Desabilitar animações complexas em mobile */
    .category-card:nth-child(n) {
        animation: none !important;
    }
    
    .benefit-item:nth-child(n) {
        animation: none !important;
    }
    
    /* Manter apenas animações essenciais */
    .mobile-category-btn {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .category-card:hover {
        animation: none !important;
        transform: translateY(-3px) !important;
    }
}

/* ===== OTIMIZAÇÕES DE PERFORMANCE MOBILE ===== */
@media (max-width: 768px) {
    /* Otimizar renderização */
    .hero-image,
    .category-card,
    .mobile-category-btn {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Reduzir blur e sombras complexas */
    .mobile-category-btn {
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    }
    
    .category-card {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }
    
    /* Simplificar gradientes */
    .hero-overlay {
        background: rgba(233, 30, 99, 0.7) !important;
    }
}


/* ===== PÁGINA DE PRODUTO INDIVIDUAL MELHORADA ===== */
.single-product-page {
    background: #fafafa;
    min-height: 100vh;
}

.single-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 20px;
    margin-bottom: 40px;
}

.product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* ===== GALERIA DE IMAGENS ===== */
.product-gallery-section {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.main-image-container {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

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

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #e91e63;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== INFORMAÇÕES DO PRODUTO ===== */
.product-info-section {
    padding: 20px 0;
}

.product-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 15px;
}

.product-price .amount {
    font-size: 2.2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-short-description {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #e91e63;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.product-purchase-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 2px solid #f0f0f0;
}

.product-purchase-form .cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-purchase-form .quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-purchase-form .quantity input {
    width: 80px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-purchase-form .single_add_to_cart_button {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.product-purchase-form .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #d81b60, #e91e63);
}

.product-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.product-meta > div {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.product-meta > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.product-meta strong {
    color: #e91e63;
    font-weight: 600;
}

.product-meta a {
    color: #9c27b0;
    text-decoration: none;
    font-weight: 500;
}

.product-meta a:hover {
    color: #e91e63;
    text-decoration: underline;
}

/* ===== DESCRIÇÃO COMPLETA ===== */
.product-description-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 3px solid #f0f0f0;
}

.description-container {
    max-width: 800px;
    margin: 0 auto;
}

.description-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.description-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 2px;
}

.product-full-description,
.product-auto-description {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

/* ===== DESCRIÇÕES AUTOMÁTICAS ===== */
.auto-generated-description h3 {
    color: #e91e63;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.auto-generated-description h4 {
    color: #9c27b0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.auto-generated-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.auto-generated-description li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #666;
}

.auto-generated-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.auto-generated-description p {
    margin-bottom: 20px;
    text-align: justify;
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 768px) {
    .single-product-wrapper {
        margin: 10px;
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .product-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .product-gallery-section {
        position: static;
    }
    
    .main-product-image {
        height: 350px;
    }
    
    .product-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .product-price {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .product-short-description {
        padding: 20px;
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .product-purchase-form {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .product-purchase-form .single_add_to_cart_button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .description-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .product-full-description,
    .product-auto-description {
        padding: 25px 20px;
        font-size: 1rem;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .single-product-wrapper {
        margin: 5px;
        padding: 15px 10px;
    }
    
    .main-product-image {
        height: 280px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .product-short-description {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .product-purchase-form {
        padding: 15px;
    }
    
    .product-purchase-form .single_add_to_cart_button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .product-full-description,
    .product-auto-description {
        padding: 20px 15px;
        font-size: 0.95rem;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 50px;
    }
}

/* ===== ANIMAÇÕES E EFEITOS ===== */
@keyframes productFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.single-product-wrapper {
    animation: productFadeIn 0.6s ease-out;
}

.product-info-section > * {
    animation: productFadeIn 0.8s ease-out;
}

.product-gallery-section {
    animation: productFadeIn 0.7s ease-out;
}

/* ===== MELHORIAS DE ACESSIBILIDADE ===== */
.product-purchase-form .single_add_to_cart_button:focus {
    outline: 3px solid rgba(233, 30, 99, 0.5);
    outline-offset: 2px;
}

.thumbnail-item:focus {
    outline: 3px solid rgba(233, 30, 99, 0.5);
    outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.product-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.product-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e91e63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ===== FILTROS HORIZONTAIS NO MOBILE ===== */
@media (max-width: 768px) {
    .shop-sidebar {
        background: white;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .filters-container {
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .filters-container::-webkit-scrollbar {
        display: none;
    }
    
    .filter-section {
        flex: 0 0 auto;
        min-width: 140px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        margin-bottom: 0;
    }
    
    .filter-toggle {
        width: 100%;
        padding: 12px 15px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }
    
    .filter-title {
        font-size: 0.85rem;
        margin: 0;
        color: #e91e63;
        font-weight: 600;
    }
    
    .toggle-icon {
        font-size: 1.2rem;
        color: #e91e63;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .filter-section.active .toggle-icon {
        transform: rotate(45deg);
    }
    
    .filter-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        z-index: 1000;
        max-height: 300px;
        overflow-y: auto;
        margin-top: 5px;
    }
    
    .filter-section.active .filter-content {
        display: block;
    }
    
    .filter-section {
        position: relative;
    }
    
    .filter-buttons {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-btn-option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.85rem;
    }
    
    .filter-btn-option:hover,
    .filter-btn-option.active {
        background: linear-gradient(135deg, #e91e63, #f06292);
        color: white;
        border-color: #e91e63;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    }
    
    .filter-name {
        font-weight: 500;
    }
    
    .filter-count {
        background: rgba(255,255,255,0.2);
        padding: 2px 6px;
        border-radius: 10px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .filter-btn-option.active .filter-count {
        background: rgba(255,255,255,0.3);
    }
    
    /* Filtro de preço específico */
    .price-filter {
        padding: 15px;
    }
    
    .price-inputs {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .price-inputs input {
        flex: 1;
        padding: 8px 10px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 0.85rem;
    }
    
    .filter-apply-btn {
        width: 100%;
        padding: 10px;
        background: linear-gradient(135deg, #e91e63, #f06292);
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .filter-apply-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    }
    
    /* Indicador de scroll horizontal */
    .filters-container::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1));
        pointer-events: none;
        border-radius: 50%;
    }
    
    /* Botão de limpar filtros */
    .clear-filters-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #ff4444;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.75rem;
        cursor: pointer;
        display: none;
    }
    
    .filters-active .clear-filters-btn {
        display: block;
    }
}

/* ===== MELHORIAS PARA TELAS MUITO PEQUENAS ===== */
@media (max-width: 480px) {
    .filters-container {
        gap: 8px;
        padding: 8px 0;
    }
    
    .filter-section {
        min-width: 120px;
    }
    
    .filter-toggle {
        padding: 10px 12px;
    }
    
    .filter-title {
        font-size: 0.8rem;
    }
    
    .filter-btn-option {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .filter-content {
        max-height: 250px;
    }
}

/* ===== ANIMAÇÕES PARA FILTROS ===== */
@keyframes filterSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-content {
    animation: filterSlideIn 0.3s ease-out;
}

/* ===== CONTADOR DE FILTROS ATIVOS ===== */
.filter-toggle::after {
    content: attr(data-count);
    display: none;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    line-height: 18px;
    text-align: center;
    position: absolute;
    top: -5px;
    right: -5px;
    font-weight: bold;
}

.filter-toggle.has-active::after {
    display: block;
}

/* ===== RESPONSIVIDADE PARA TABLETS ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .filters-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        overflow: visible;
    }
    
    .filter-section {
        min-width: auto;
    }
    
    .filter-content {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        margin-top: 0;
    }
    
    .filter-toggle {
        pointer-events: none;
    }
    
    .toggle-icon {
        display: none;
    }
}


/* ===== DESCRIÇÃO INLINE NA PÁGINA DE PRODUTO ===== */
.product-description-inline {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #e91e63;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e91e63 #f0f0f0;
}

.product-description-inline::-webkit-scrollbar {
    width: 6px;
}

.product-description-inline::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.product-description-inline::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 3px;
}

.product-description-inline::-webkit-scrollbar-thumb:hover {
    background: #d81b60;
}

.product-description-inline .product-full-description,
.product-description-inline .product-auto-description {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.product-description-inline h3 {
    color: #e91e63;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

.product-description-inline h4 {
    color: #9c27b0;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 10px;
}

.product-description-inline ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.product-description-inline li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    color: #666;
    font-size: 0.9rem;
}

.product-description-inline li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-description-inline p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== AJUSTES PARA MOBILE - DESCRIÇÃO AO LADO ===== */
@media (max-width: 768px) {
    .product-main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-description-inline {
        padding: 15px;
        margin: 15px 0;
        max-height: 250px;
        font-size: 0.9rem;
    }
    
    .product-description-inline h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-description-inline h4 {
        font-size: 0.95rem;
        margin-top: 15px;
        margin-bottom: 8px;
    }
    
    .product-description-inline li {
        font-size: 0.85rem;
        margin-bottom: 5px;
        padding-left: 18px;
    }
    
    .product-description-inline p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .product-description-inline {
        padding: 12px;
        margin: 12px 0;
        max-height: 200px;
        font-size: 0.85rem;
    }
    
    .product-description-inline h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .product-description-inline h4 {
        font-size: 0.9rem;
        margin-top: 12px;
        margin-bottom: 6px;
    }
    
    .product-description-inline li {
        font-size: 0.8rem;
        margin-bottom: 4px;
        padding-left: 16px;
    }
    
    .product-description-inline p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

/* ===== INDICADOR DE SCROLL ===== */
.product-description-inline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(transparent, rgba(248, 249, 250, 0.9));
    pointer-events: none;
    border-radius: 0 0 12px 12px;
}

.product-description-inline {
    position: relative;
}

/* ===== ANIMAÇÃO DE ENTRADA ===== */
.product-description-inline {
    animation: slideInDescription 0.5s ease-out;
}

@keyframes slideInDescription {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MELHORIAS DE LEGIBILIDADE ===== */
.product-description-inline .auto-generated-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-description-inline strong {
    color: #e91e63;
    font-weight: 600;
}

.product-description-inline em {
    color: #9c27b0;
    font-style: normal;
    font-weight: 500;
}

/* ===== RESPONSIVIDADE PARA TABLETS ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-description-inline {
        padding: 18px;
        margin: 18px 0;
        max-height: 280px;
        font-size: 0.92rem;
    }
    
    .product-description-inline h3 {
        font-size: 1.15rem;
    }
    
    .product-description-inline h4 {
        font-size: 0.98rem;
    }
    
    .product-description-inline li {
        font-size: 0.88rem;
    }
    
    .product-description-inline p {
        font-size: 0.92rem;
    }
}

/* ===== ESTADO DE FOCO PARA ACESSIBILIDADE ===== */
.product-description-inline:focus-within {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

/* ===== OTIMIZAÇÃO PARA IMPRESSÃO ===== */
@media print {
    .product-description-inline {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        max-height: none !important;
        overflow: visible !important;
        page-break-inside: avoid;
    }
}

