/**
 * WebP Images CSS - Lumevié
 * Otimizações para carregamento de imagens WebP
 */

/* Transição suave ao carregar */
img {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

/* Prevenir layout shift */
img[width][height] {
    height: auto;
}

/* Otimização de renderização */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Placeholder para imagens que ainda não carregaram */
img:not([src]) {
    background-color: #f5f5f5;
    min-height: 100px;
}

/* ========================================
   CORREÇÃO: Imagem de Quote nos Testimonials
   ======================================== */
.testimonials .item .quote {
    position: absolute !important;
    right: 20px !important;
    top: 90px !important;
    width: 70px !important;
    margin: 0 auto 30px !important;
    opacity: 0.3 !important;
    display: block !important;
}

.testimonials .item .quote img {
    width: 70px !important;
    height: auto !important;
    display: block !important;
}
