:root{
    --marievab: #A6CAEC;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #A6CAEC;
    z-index: 1000;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 2%;
    justify-content: center;
    margin-bottom: 25px;
}

/* Card sofisticado - tema azul */
.produto-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(166, 202, 236, 0.3);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    width: 260px;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 2px solid #A6CAEC;
}

/* Badge de desconto */
.badge-off {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #A6CAEC;
    color: #333;
    font-weight: bold;
    font-size: 1em;
    padding: 8px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Imagem com borda suave e zoom */
.produto-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produto-card:hover .produto-img img {
    transform: scale(1.08);
}

/* Info do produto */
.produto-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.produto-info h3 {
    margin: 0;
    font-size: 1.15em;
    font-weight: 600;
    color: #1a1a1a;
}

.produto-info p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}

.preco-container {
    display: flex;
    flex-wrap: wrap; /* permite quebrar linha */
    align-items: baseline;
    gap: 6px; /* espaço entre preço e "ou" */
}

.produto-info .preco-container .preco {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    font-weight: 700;
    color: #007BFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.produto-info .preco-container .parcelamento {
    font-size: 0.9em;
    color: #444;
    font-weight: 500;
    margin-left: 4px; /* pequeno recuo para separar do "ou" quando quebra linha */
    margin-top: -15px;
}