* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
/* cores */
:root{
    --cinza:#f7f5f4;
    --orange:#ef420b;
    --purple:#d35ffe;
}
/* menu */
.bg-cinza{
    background-color: var(--cinza);
}
.sacola-count {
    top: -5px;
    right: -5px;
}

/* menu mobile */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
    transform: translateX(0);
}
/* estilo tela produto.html */
.btn-cor span:hover,
.btn-tamanho button:hover {
    background-color: #e0e0e0; /* Realce ao passar o mouse */
    cursor: pointer;
}

.btn-cor span.selected, 
.btn-tamanho button.selected {
    border: 2px solid #0066cc; /* Cor de seleção */
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* marketing */
span.icone-olho{
    color: black !important;
}
/* carregamento */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#loading-screen .spinner {
    width: 64px;
    height: 64px;
    border: 4px solid #ec4899; /* Rosa */
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* banner slider simples */
.banner-slider {
    width: 100%;
    height: 275px; /* define altura fixa no mobile */
    position: relative;
    overflow: hidden;
    margin: 0; /* remove espaço extra */
    padding: 0;
}

@media (min-width: 768px) {
    .banner-slider {
        height: 600px;
    }
}

.banner-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; /* fica mais bonito e sem espaços */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}
/* seção benefícios */
.benefits-section {
    background: rgb(243 244 246);
    padding: 25px 15px; /* diminui o espaçamento */
    margin: 0; /* remove qualquer margem */
    border-top: none; /* remove a linha que separa */
    /* border-bottom: 1px solid #eee; */
}
.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.benefit-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease;
}
.benefit-icon {
    min-width: 52px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffe6f1;
}
.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #d81b60;
}
.benefit-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
    line-height: 1.2;
}
.benefit-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* melhora visual no mobile */
@media (max-width: 480px) {
    .benefit-card {
        padding: 14px;
    }

    .benefit-text h3 {
        font-size: 14px;
    }

    .benefit-text p {
        font-size: 12px;
    }
}

/* botao zap */
.btn-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    background: #00bd45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp img {
    width: 50px;
    height: 50px;
}

.btn-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0px 12px 25px rgba(0,0,0,0.35);
}
/* cupom de desconto */
.cupom-card {
    transition: all 0.25s ease;
}
.cupom-card:hover {
    transform: translateY(-4px);
}
.badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

