.card-options {
    display: flex;
    flex-direction: row;         /* Cards lado a lado por padrão */
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;           /* Não quebra linha no desktop */
}

.option-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(160,18,20,0.12), 0 1.5px 6px rgba(160,18,20,0.08);
    border: 2px solid rgba(160,18,20,0.18);
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    width: 260px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.option-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(-1deg);
    box-shadow: 0 24px 48px -8px #a0121440, 0 4px 16px #a0121420;
    border: 2px solid #a01214;
}

.option-svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: filter 0.3s;
    filter: drop-shadow(0 2px 8px #a0121420);
}

.option-card:hover .option-svg {
    filter: drop-shadow(0 4px 20px #a0121440) brightness(1.1);
}

.option-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #a01214;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.option-desc {
    color: #444;
    font-size: 1rem;
    text-align: center;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .card-options {
        flex-direction: column;  /* Empilha no mobile */
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .option-card {
        width: 90vw;
        min-width: unset;
        min-height: 220px;
        padding: 1.5rem 0.5rem;
    }
}
