/* ============================================
   SECTIONS - Features, Sobre, Depoimentos,
   Instagram, CTA e Footer
   ============================================ */

/* -------- Testimonials -------- */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--primary), transparent);
    animation: rotate 6s linear infinite;
    z-index: 0;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: white;
    border-radius: 0.5rem;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

/* -------- Quality / Shine badge -------- */
.quality-badge {
    position: relative;
    overflow: hidden;
}

.quality-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(208, 179, 100, 0.1), transparent);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

/* -------- Glass reflection (deco) -------- */
.glass-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(30deg) translate(-30%, -30%);
    animation: reflectionMove 8s infinite alternate;
}

@keyframes reflectionMove {
    0%   { transform: rotate(30deg) translate(-30%, -30%); }
    100% { transform: rotate(30deg) translate( 30%,  30%); }
}
