/* Garantir que o header original funcione com o novo design */
.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero Section Moderno */
.hero-modern {
    position: relative;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5f2 0%, #e55c78 100%);
    margin-top: -1px; /* Garantir continuidade visual com o header */
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Removido: gradientes radiais que criavam áreas mais escuras */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    padding: 0.4rem 1.25rem;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    position: relative;
}

.badge-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e55c78, #d14567);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0.6;
    filter: blur(15px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1f1a1b;
    margin-bottom: 1rem;
}

.hero-title-main {
    display: block;
}

.hero-title-accent {
    display: block;
    color: #e55c78;
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e55c78, transparent);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #433d3f;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1f1a1b;
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: #6b6466;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1f1a1b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1f1a1b;
}

.btn-primary-modern:hover {
    background: #2d2224;
    border-color: #2d2224;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 26, 27, 0.2);
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #1f1a1b;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-stack {
    position: relative;
    width: 400px;
    height: 400px;
}

.product-card {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-1 {
    top: -20px;
    left: 180px;
    transform: rotate(-12deg);
    animation: float1 4s ease-in-out infinite;
    z-index: 1;
}

.product-2 {
    top: 80px;
    left: 0;
    z-index: 3;
    transform: rotate(5deg);
    animation: float2 4s ease-in-out infinite;
}

.product-3 {
    top: 160px;
    left: 140px;
    transform: rotate(-8deg);
    animation: float3 4s ease-in-out infinite;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 140px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5f2, #e9e4df);
}

.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);
}

.floating-card-info {
    text-align: center;
    margin-top: 0.5rem;
}

.floating-card-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f1a1b;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

a.product-card {
    text-decoration: none;
    display: block;
}

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


/* Animations */
@keyframes float1 {
    0%, 100% { transform: rotate(-15deg) translateY(0px); }
    50% { transform: rotate(-18deg) translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-8deg) translateY(-15px); }
}

@keyframes float3 {
    0%, 100% { transform: rotate(-10deg) translateY(0px); }
    50% { transform: rotate(-13deg) translateY(-25px); }
}


@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Mobile floating animations */
@keyframes floatMobile1 {
    0%, 100% { transform: rotate(-8deg) translateY(0px); }
    50% { transform: rotate(-10deg) translateY(-12px); }
}

@keyframes floatMobile2 {
    0%, 100% { transform: rotate(4deg) translateY(-10px); }
    50% { transform: rotate(6deg) translateY(-18px); }
}

@keyframes floatMobile3 {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-7deg) translateY(-10px); }
}

/* Features Section */
.features-modern {
    padding: 6rem 0;
    background: #f8f5f2;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #1f1a1b;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #6b6466;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 92, 120, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(229, 92, 120, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e55c78, #d14567);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1f1a1b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b6466;
    line-height: 1.6;
}

/* Categories Preview */
.categories-preview {
    padding: 6rem 0;
    background: white;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.categories-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f1a1b;
}

.view-all-link {
    color: #e55c78;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #d14567;
}

.categories-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-modern-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

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

.category-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.category-modern-card:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1f1a1b;
    margin-bottom: 1rem;
}

.category-content p {
    color: #6b6466;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.product-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b6466;
    font-size: 0.875rem;
}

.category-link {
    background: #e55c78;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #d14567;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f1a1b 0%, #433d3f 100%);
    color: #f8f5f2;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.newsletter-badge {
    display: inline-block;
    background: rgba(229, 92, 120, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(229, 92, 120, 0.3);
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(248, 245, 242, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #e55c78;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #e55c78;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #d14567;
    transform: translateY(-2px);
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: rgba(248, 245, 242, 0.7);
    line-height: 1.5;
}

.newsletter-privacy a {
    color: #e55c78;
    text-decoration: none;
    font-weight: 500;
}

.newsletter-privacy a:hover {
    text-decoration: underline;
}

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

/* Seções de Produtos (Bestsellers e Novidades) */
.bestsellers-section,
.new-products-section {
    padding: 6rem 0;
    background: white;
}

.new-products-section {
    background: #f8f5f2;
}

.section-header-home {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 92, 120, 0.1);
    color: #e55c78;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-badge-home.badge-new-section {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.section-badge-home svg {
    width: 16px;
    height: 16px;
}

.section-title-home {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1f1a1b;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-subtitle-home {
    font-size: 1.125rem;
    color: #6b6466;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card-home {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0eded;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #e0dede;
}

.product-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
}

.badge-home {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-bestseller-home {
    background: linear-gradient(135deg, #e55c78, #d64d6a);
    color: white;
}

.badge-new-home {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

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

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-placeholder-home {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e55c78 25%, transparent 25%, transparent 75%, #e55c78 75%);
    background-size: 30px 30px;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.wishlist-btn-home {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.product-card-home:hover .wishlist-btn-home {
    opacity: 1;
}

.wishlist-btn-home:hover {
    background: #1f1a1b;
    color: white;
}

.wishlist-btn-home:hover svg {
    stroke: white;
}

.wishlist-btn-home.active {
    background: #e55c78;
    color: white;
    opacity: 1;
}

.wishlist-btn-home.active svg {
    fill: currentColor;
    stroke: white;
}

.product-card-content-home {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title-home {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1f1a1b;
    margin: 0 0 0.35rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    min-height: calc(1.4em * 2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card-title-home a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title-home a:hover {
    color: #e55c78;
}

.product-card-category-home {
    display: flex;
    align-items: flex-start;
    font-size: 0.75rem;
    color: #8a8486;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: calc(1.4em * 2);
}

.product-card-footer-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0eded;
    margin-top: auto;
}

.product-price-home {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f1a1b;
}

.btn-add-cart-home {
    padding: 0.5rem 1.25rem;
    background: #1f1a1b;
    color: white;
    border: 1px solid #1f1a1b;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-add-cart-home:hover {
    background: #e55c78;
    border-color: #e55c78;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(229, 92, 120, 0.3);
}

.section-cta-home {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all-home {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #1f1a1b;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e55c78;
}

.btn-view-all-home:hover {
    background: #e55c78;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 92, 120, 0.3);
}

.new-products-section .btn-view-all-home {
    border-color: #4CAF50;
}

.new-products-section .btn-view-all-home:hover {
    background: #4CAF50;
    border-color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    /* Mostrar os cards de produtos no mobile */
    .hero-visual {
        display: block;
        order: 2;
        margin-top: 1rem;
    }

    .hero-text {
        order: 1;
    }

    /* Animações de flutuação para mobile */
    @keyframes floatCard1 {
        0%, 100% { transform: translate(-50%, -50%) rotate(-20deg) translateX(-45px) translateY(0); }
        50% { transform: translate(-50%, -50%) rotate(-20deg) translateX(-45px) translateY(-8px); }
    }
    @keyframes floatCard2 {
        0%, 100% { transform: translate(-50%, -50%) translateY(0); }
        50% { transform: translate(-50%, -50%) translateY(-10px); }
    }
    @keyframes floatCard3 {
        0%, 100% { transform: translate(-50%, -50%) rotate(20deg) translateX(45px) translateY(0); }
        50% { transform: translate(-50%, -50%) rotate(20deg) translateX(45px) translateY(-8px); }
    }

    /* Efeito Baralho - Cards sobrepostos como cartas */
    .hero-product-stack {
        width: 100%;
        height: 170px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .product-card {
        position: absolute;
        width: 100px;
        height: 130px;
        padding: 0.5rem;
        left: 50%;
        top: 50%;
        transform-origin: center bottom;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    /* Card da esquerda - atrás, rotacionado para esquerda */
    .product-1 {
        transform: translate(-50%, -50%) rotate(-20deg) translateX(-45px);
        z-index: 1;
        animation: floatCard1 3s ease-in-out infinite;
    }

    /* Card do meio - na frente, centralizado */
    .product-2 {
        transform: translate(-50%, -50%);
        z-index: 3;
        animation: floatCard2 3s ease-in-out infinite 0.5s;
    }

    /* Card da direita - atrás, rotacionado para direita */
    .product-3 {
        transform: translate(-50%, -50%) rotate(20deg) translateX(45px);
        z-index: 1;
        animation: floatCard3 3s ease-in-out infinite 1s;
    }

    .product-image {
        height: 82px;
    }

    .floating-card-price {
        font-size: 0.7rem;
        padding: 0.2rem 0.55rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .categories-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .categories-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .products-carousel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .category-content {
        padding: 1.5rem;
    }

    .category-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
    }

    .product-count {
        width: 100%;
        justify-content: flex-start;
    }

    .product-count svg {
        flex-shrink: 0;
    }

    .category-link {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0.875rem 1.25rem;
    }

    .hero-modern {
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 1.25rem;
        border-radius: 1rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-metrics {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .metric-item {
        flex: 0 0 auto;
    }

    .metric-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-product-stack {
        gap: 10px;
    }

    .product-card {
        width: 100px;
        height: 130px;
    }

    .product-image {
        height: 80px;
    }

    .floating-card-price {
        font-size: 0.65rem;
    }

    .features-modern,
    .categories-preview,
    .newsletter-modern,
    .bestsellers-section,
    .new-products-section {
        padding: 4rem 0;
    }

    .products-carousel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .section-header-home {
        margin-bottom: 2.5rem;
    }

    .features-title,
    .categories-title,
    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-primary-modern,
    .btn-secondary-modern,
    .newsletter-button {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-content {
        padding: 1.25rem;
    }

    .product-count {
        font-size: 0.95rem;
        gap: 0.625rem;
    }

    .category-link {
        min-height: 44px;
        font-size: 0.95rem;
    }

    .hero-modern {
        padding: 1rem 0;
    }

    .hero-container {
        padding: 1rem;
    }

    .hero-content {
        padding: 1rem;
        gap: 1rem;
    }

    .hero-badge {
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.5rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .hero-metrics {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .metric-number {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    .hero-actions {
        gap: 0.5rem;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Cards de produto menores */
    .hero-product-stack {
        gap: 8px;
        margin-top: 0.5rem;
    }

    .product-card {
        width: 90px;
        height: 115px;
        padding: 0.4rem;
        border-radius: 0.75rem;
    }

    .product-image {
        height: 70px;
        border-radius: 0.4rem;
    }

    .floating-card-info {
        margin-top: 0.25rem;
    }

    .floating-card-price {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }

    .features-title,
    .categories-title,
    .newsletter-title {
        font-size: 1.75rem;
    }

    /* Features grid: 2 colunas lado a lado no mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 1rem;
    }

    .categories-modern-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .features-modern,
    .categories-preview,
    .newsletter-modern {
        padding: 3rem 0;
    }

    /* Feature cards compactos para caber 2 por linha */
    .feature-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .category-modern-card {
        padding: 2rem;
    }

    .products-carousel {
        gap: 10px;
    }

    .product-card-home {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .product-card-image img {
        padding: 0.75rem;
    }

    .product-card-content-home {
        padding: 0.75rem 0.85rem 0.85rem;
    }

    .product-card-title-home {
        font-size: 0.82rem;
        line-height: 1.35;
        font-weight: 500;
        min-height: calc(1.35em * 2);
    }

    .product-card-category-home {
        min-height: calc(1.35em * 2);
    }

    .product-price-home {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .product-card-footer-home {
        padding-top: 0.6rem;
        margin-top: 0.5rem;
        border-top: 1px solid #f0f0f0;
    }

    /* Botao retangular com texto VER PRODUTO */
    .btn-add-cart-home {
        padding: 0.5rem 0.75rem;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        border-radius: 4px;
    }

    .wishlist-btn-home {
        width: 28px;
        height: 28px;
        top: 0.5rem;
        right: 0.5rem;
        opacity: 1;
    }

    .wishlist-btn-home svg {
        width: 14px;
        height: 14px;
    }

    .product-card-badges span {
        font-size: 0.55rem;
        padding: 0.25rem 0.5rem;
    }
}
