/* Header Logo com Imagem */
.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }

}

/* Hero Logo com Imagem */
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-logo-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    padding: 8px;
}

/* Para imagens com fundo branco */
.hero-logo-image.white-bg {
    background: white;
    padding: 10px;
}

/* Para imagens com fundo transparente */
.hero-logo-image.transparent-bg {
    background: transparent;
    border-color: var(--pink-500);
}

.hero-logo .logo-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-align: center;
}

.hero-logo .logo-text span {
    font-size: 0.875rem;
    color: var(--gray-300);
    display: block;
    text-align: center;
}

/* Hero Section - Mantendo o estilo original */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

/* Hero Background - Removido (agora usando banner no hero) */
/* .hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.8), transparent);
} */

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.5;
}

.floating-1 {
    top: 5rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(219, 39, 119, 0.2);
}

.floating-2 {
    bottom: 10rem;
    right: 10rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(219, 39, 119, 0.2);
}

.hero-content {
    position: relative;
    padding: 5rem 1.5rem;
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-title span {
    display: block;
    background: linear-gradient(to right, var(--pink-500), var(--pink-600), var(--pink-700));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.hero-subtitle span {
    display: block;
    margin-bottom: 0.5rem;
}

/* Hero Wrapper - Removido, layout agora é coluna no hero-content */

/* Hero Banner - Topo da página */
.hero-banner-top {
    margin-bottom: 2rem;
    width: 95%;
    max-width: 1200px;
}

.hero-banner {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.hero-banner a {
    display: block;
    width: 100%;
    height: auto;
}

.promo-banner-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsivo para mobile */
@media (max-width: 1024px) {
    .hero-content {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .promo-banner-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-wrapper {
        gap: 1.5rem;
    }
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--gray-800);
    padding: 30px;
    border-radius: 10px;
}

.contact-item i {
    font-size: 40px;
    color: var(--pink-500);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray-400);
}

/* Products Grid para home - CARDS IGUAIS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card - ESTILO ÚNICO PARA TODAS AS PÁGINAS */
.product-card {
    background-color: var(--gray-900);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(236,72,153,0.09), 0 6px 12px rgba(0,0,0,0.06);
}

.product-image {
    aspect-ratio: 4/3;
    max-height: 280px;
    background-color: pink;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
}

.badge {
    background: linear-gradient(to right, var(--pink-600), var(--pink-500));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--yellow-400);
}

.out-of-stock-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
}

.product-category {
    color: var(--pink-500);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-name {
    font-weight: 600;
    color: var(--white);
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.8em;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.product-price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.product-price-old {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-action-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
}

.product-action-btn.add-to-cart {
    background: linear-gradient(to right, var(--pink-600), var(--pink-500));
    color: var(--white);
    border: 1px solid var(--pink-700);
}

.product-action-btn.add-to-cart:hover:not(.disabled) {
    background: linear-gradient(to right, var(--pink-700), var(--pink-600));
    transform: translateY(-2px);
}

.product-action-btn.add-to-cart.disabled {
    background: var(--gray-700);
    cursor: not-allowed;
}

.product-action-btn.view-details {
    background-color: transparent;
    border: 1px solid var(--gray-700);
    color: var(--white);
}

.product-action-btn.view-details:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-action-btn .btn-text {
        display: none;
    }

    .product-action-btn i {
        margin: 0;
    }

    .product-image {
        max-height: 220px;
        aspect-ratio: 1.6;
    }

    .hero-logo-image {
        width: 200px;
        height: 200px;
    }

    .hero-logo .logo-text h1 {
        font-size: 2rem;
    }
}

/* Promo banner styles - Agora integrado ao Hero */
/* .promo-banner foi movido para dentro do hero como hero-banner */

.no-results {
    padding: 40px 0;
    text-align: center;
    color: var(--gray-400);
    grid-column: 1 / -1;
}

/* Animações */
.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 4s ease-in-out infinite;
}

.animate-pulse-delay {
    animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}


/* Estilos do botão de entrega */
.delivery-btn {
    margin: 1.5rem 0 2.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 280px;
}

.delivery-btn i {
    margin-right: 0.6rem;
}

