/* ===== RESULTADOS - DESKTOP ===== */
@media (min-width: 769px) {
    .resultados {
        padding: 200px 80px 180px;
        text-align: center;
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        background: transparent;
    }

    .resultados::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 600px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(67, 55, 39, 0.2), rgba(218, 190, 153, 0.3), rgba(67, 55, 39, 0.2), transparent);
    }

    .resultados::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(218, 190, 153, 0.08) 0%, transparent 70%);
        transform: translateY(-50%);
        pointer-events: none;
        border-radius: 50%;
    }

    .titulo-resultados {
        font-size: 4rem;
        color: #433727;
        font-weight: 500;
        margin-bottom: 20px;
        letter-spacing: -0.03em;
        position: relative;
        display: inline-block;
        font-family: "Instrument Serif", serif;
        line-height: 1.1;
    }

    .titulo-resultados::before {
        content: '✨';
        position: absolute;
        left: -50px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        opacity: 0.3;
        animation: sparkle 3s ease-in-out infinite;
    }

    .titulo-resultados::after {
        content: '';
        position: absolute;
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #DABE99, #433727, #DABE99, transparent);
        border-radius: 2px;
    }

    .subtitulo-resultados {
        font-size: 1.3rem;
        color: #5B5B5B;
        font-weight: 400;
        margin-bottom: 0;
        letter-spacing: 0.03em;
        font-style: italic;
        margin-top: 40px;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-container-resultados {
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 1300px;
        margin: 120px auto 0;
    }

    .cards-resultados {
        display: flex;
        gap: 28px;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 30px 0;
        will-change: transform;
    }

    .card-resultado {
        flex-shrink: 0;
        width: calc((100% - 84px) / 4);
    }

    .card-resultado img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

    .dots-resultados {
        display: none;
    }
}

/* ===== RESULTADOS - MOBILE ===== */
@media (max-width: 768px) {
    .resultados {
        padding: 140px 20px 100px;
        text-align: center;
        position: relative;
        background: transparent;
    }

    .titulo-resultados {
        font-size: 2.8rem;
        color: #433727;
        font-weight: 500;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
        position: relative;
        display: inline-block;
        font-family: "Instrument Serif", serif;
        line-height: 1.15;
    }

    .titulo-resultados::before {
        display: none;
    }

    .titulo-resultados::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #DABE99, #433727, #DABE99, transparent);
        border-radius: 2px;
    }

    .subtitulo-resultados {
        font-size: 1.1rem;
        color: #5B5B5B;
        font-weight: 400;
        margin-bottom: 0;
        letter-spacing: 0.025em;
        font-style: italic;
        margin-top: 32px;
        padding: 0 20px;
        line-height: 1.6;
    }

    .slider-container-resultados {
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 50px auto 0;
    }

    .cards-resultados {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        touch-action: pan-y pinch-zoom;
        will-change: transform;
    }

    .card-resultado {
        min-width: 100%;
    }

    .card-resultado img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

    .dots-resultados {
        display: none;
    }
}

/* ===== RESULTADOS - TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .resultados {
        padding: 180px 50px 160px;
    }

    .titulo-resultados {
        font-size: 3.5rem;
    }

    .titulo-resultados::before {
        left: -40px;
        font-size: 1.8rem;
    }

    .cards-resultados {
        display: flex;
        gap: 32px;
    }

    .card-resultado {
        flex-shrink: 0;
        width: calc((100% - 32px) / 2);
    }

    .card-resultado img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }
}

/* ===== RESULTADOS - MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .resultados {
        padding: 120px 15px 80px;
    }

    .titulo-resultados {
        font-size: 2.2rem;
    }

    .subtitulo-resultados {
        font-size: 1rem;
        padding: 0 15px;
        margin-top: 24px;
    }

    .slider-container-resultados {
        max-width: 100%;
        margin: 40px auto 0;
    }

    .card-resultado img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }

}

/* ===== ANIMAÇÃO SPARKLE ===== */
@keyframes sparkle {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }
}
