@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: #f8fafc;
}

/* Gradiente de texto */
.gradient-text {
    background-image: linear-gradient(90deg, rgb(150, 145, 145) 33.654%, rgb(92, 92, 92) 59.135%, rgb(150, 145, 145) 87.981%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Line clamp */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Esconder scrollbars */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE e Edge */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none; /* Chrome, Safari e Opera */
}

/* Animações de página */
.page-enter {
    opacity: 0;
    transform: translateY(10px);
}

.page-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms, transform 300ms;
}

.page-exit {
    opacity: 1;
}

.page-exit-active {
    opacity: 0;
    transition: opacity 300ms;
}

/* Paginação */
.pagination-dot {
    height: 8px;
    width: 8px;
    border-radius: 9999px;
    background-color: #d9d9d9;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pagination-dot.active {
    width: 24px;
    background-color: #000;
}

@media (min-width: 640px) {
    .pagination-dot {
        height: 10px;
        width: 10px;
    }
    
    .pagination-dot.active {
        width: 32px;
    }
}

/* Efeitos de hover nos cards */
.product-card {
    transition: all 0.3s ease;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.2);
}

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

/* Containers de conteúdo */
#content-container {
    min-height: 500px;
}

/* Esconder elementos durante a navegação */
.hidden-transition {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visible-transition {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Padding para não sobrepor o header fixo */
body {
    padding-top: 67px;
}

/* Centralizar header-content */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
}

#header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

