/* style.css - Estilos personalizados */

/* Variáveis CSS */
:root {
    --primary-pink: #E83B8E;
    --primary-pink-dark: #d42a7d;
    --secondary-gold: #D4AF37;
    --light-gray: #f9fafb;
}

/* Estilos gerais */
.text-primary-pink {
    color: var(--primary-pink);
}

.bg-primary-pink {
    background-color: var(--primary-pink);
}

.border-primary-pink {
    border-color: var(--primary-pink);
}

.hover\:bg-pink-600:hover {
    background-color: var(--primary-pink-dark);
}

/* Cards de produtos */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Botão WhatsApp flutuante */
.whatsapp-float {
    animation: pulse 2s infinite;
    z-index: 9999;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Navegação */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--primary-pink);
}

/* Badges de tamanho */
.size-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 2px;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px !important;
        right: 20px !important;
        width: 56px !important;
        height: 56px !important;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bg-gradient-fashion {
    background: linear-gradient(135deg, #f9c5d1 0%, #fceef3 100%);
}

/* Animações Suaves para Filtros */
.category-filter {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.category-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 59, 142, 0.2);
}

.category-filter.active {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(232, 59, 142, 0.3);
}

/* Animações para Filtragem de Produtos */
.product-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes do Swiper */
.swiper-pagination-bullet-active {
    background-color: #E83B8E !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #E83B8E !important;
}

@media (max-width: 768px) {
    .product-swiper {
        position: relative;
    }

    .product-swiper .swiper-button-next,
    .product-swiper .swiper-button-prev {
        display: none;
    }

    .product-swiper .swiper-pagination {
        bottom: 10px !important;
    }
}

/* Badges de tamanho */
.size-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 2px;
}
