.background-blur-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("/static/midias/imagensgeradas/paginaprecos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  transform: scale(1.05);
}

.valores-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

.valores-container h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.valores-container h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: rgba(20, 47, 58, 0.85);
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
}

.card.destaque {
    border: 2px solid #0078d7;
    background-color: rgba(20, 47, 58, 0.85);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #c5c5c5;
}

.card .price {
    font-size: 1.2rem;
    font-weight: bold;
        color: var(--cor-texto-claro);
    margin-bottom: 8px;
}

.card .desc {
    font-size: 0.95rem;
    color: #e0e6ed;
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin: 40px 0;
}

.info-note {
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 20px;
}