.spark-escolher-vinho {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spark-escolher-vinho h1,
.spark-escolher-vinho h2,
.spark-escolher-vinho h3,
.spark-escolher-vinho p,
.spark-escolher-vinho label,
.spark-escolher-vinho select,
.spark-escolher-vinho button,
.spark-escolher-vinho span,
.spark-escolher-vinho a {
    font-family: var(--fonte-padrao);
}

.spark-escolher-vinho-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spark-escolher-vinho-pacote {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2em;
}

.spark-escolher-vinho-topo {
    width: min(100% - 7%, 1366px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.spark-escolher-vinho-topo-rotulo {
    padding: .6em 1em;
    width: fit-content;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--cor-texto-branco);
    background: var(--cor-spark-principal);
}

.spark-escolher-vinho-topo h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: bold;
    line-height: 1.1;
    color: var(--cor-spark-principal);
}

.spark-escolher-vinho-topo p,
.spark-escolher-vinho-r-topo p,
.spark-escolher-vinho-resposta {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cor-texto-preto);
    opacity: .87;
}

.spark-escolher-vinho-form {
    padding: 10px 0;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    background-color: var(--cor-spark-complemento);
    gap: 1em;
}

.spark-escolher-vinho-caixa {
    width: min(100% - 7%, 1366px);
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(3, minmax(267px, 1fr));
    justify-items: center;
    gap: 26px;
}

.spark-escolher-vinho-campo {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: .6em;
}

.spark-escolher-vinho-campo label {
    font-size: .96rem;
    font-weight: 700;
    color: var(--cor-texto-branco);
}

.spark-escolher-vinho-campo select {
    padding: 0 1rem;
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 14px;
    outline: none;
    background: #fff;
}

.spark-escolher-vinho-campo select:focus {
    border-color: var(--cor-spark-principal);
    box-shadow: 0 0 0 3px rgba(150, 21, 66, .12);
}

.spark-escolher-vinho-acoes {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: .8em;

    width: min(100% - 7%, 1366px);
    justify-content: flex-start;
    align-items: flex-start;
}

.spark-escolher-vinho-limpar,
.spark-escolher-vinho-whatsapp {
    padding: .95em 1.4em;
    border: none;
    border-radius: 14px;
    font-size: .96rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .3s ease;
}

.spark-escolher-vinho-limpar {
    color: var(--cor-spark-principal);
    background: var(--cor-texto-branco);
}

.spark-escolher-vinho-whatsapp {
    color: var(--cor-texto-branco);
    background: var(--cor-spark-principal);
}

.spark-escolher-vinho-limpar:hover,
.spark-escolher-vinho-whatsapp:hover {
    transform: translateY(-2px);
}

/*RESULTADO*/
.spark-escolher-vinho-resultado {
    width: min(100% - 7%, 1366px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.spark-escolher-vinho-r-topo {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.spark-escolher-vinho-r-topo h2 {
    font-size: 1.6rem;
    color: var(--cor-spark-principal);
}

/*CARDS*/
.spark-escolher-vinho-r-cards {
    min-height: 160px;
    transition: opacity .25s ease;
}

/*HOVER FUNCIONANDO (SEM CONFLITO)*/
.spark-escolher-vinho-r-cards .spark-cards-r2-item {
    transition: transform .35s ease, box-shadow .35s ease;
    will-change: transform;
}

.spark-escolher-vinho-r-cards .spark-cards-r2-item:hover {
    transform: scale(1.03);
}

/*ESTADOS */
.spark-escolher-vinho-estado {
    padding: 1.4em;
    border-radius: 20px;
    background: rgba(150, 21, 66, .06);
}

/*ANIMAÇÕES*/
/*agora só opacity (sem conflito com scale)*/
.spark-escolher-vinho-r-cards .spark-cards-r2-item,
.spark-escolher-vinho-r-cards .spark-escolher-vinho-estado {
    animation: sparkFadeIn .45s ease both;
}

@keyframes sparkFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*RESPONSIVO*/
@media (max-width: 1024px) {
     .spark-escolher-vinho-form {
        gap: 2em;
    }

    .spark-escolher-vinho-caixa {
        grid-template-columns: 1fr;
    }
}
