/* =========================================================
   REDECALL - DEPOIMENTOS
   ========================================================= */

#depoimentos.rc-depoimentos {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #f5f5f5;
    overflow: hidden;
    box-sizing: border-box;
}

#depoimentos.rc-depoimentos *,
#depoimentos.rc-depoimentos *::before,
#depoimentos.rc-depoimentos *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

#depoimentos .rc-depoimentos-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

#depoimentos .rc-depoimentos-header {
    text-align: center;
    margin-bottom: 64px;
}

#depoimentos .rc-eyebrow {
    display: block;
    margin: 0 0 12px;
    color: #f97415;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#depoimentos .rc-depoimentos-header h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

#depoimentos .rc-gradient-text {
    color: #f97415;
}


/* =========================================================
   GRID
   ========================================================= */

#depoimentos .rc-depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}


/* =========================================================
   CARD
   ========================================================= */

#depoimentos .rc-depoimento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--rc-border, #303030);
    border-radius: 12px;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

    opacity: 0;
    transform: translateY(30px);
}

#depoimentos .rc-depoimento-card.rc-visible {
    opacity: 1;
    transform: translateY(0);
}

#depoimentos .rc-depoimento-card:hover {
    border-color: rgba(227, 6, 19, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   ÍCONE DE CITAÇÃO
   ========================================================= */

#depoimentos .rc-quote-icon {
    width: 32px;
    height: 32px;

    margin-bottom: 16px;

    color: rgba(227, 6, 19, 0.35);

    flex-shrink: 0;
}

#depoimentos .rc-quote-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* =========================================================
   TEXTO
   ========================================================= */

#depoimentos .rc-depoimento-text {
    flex: 1;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================================
   AUTOR
   ========================================================= */

#depoimentos .rc-depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: auto;
}

#depoimentos .rc-author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border-radius: 50%;

    background: rgba(227, 6, 19, 0.15);

    color: var(--rc-primary, #e30613);

    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

#depoimentos .rc-author-info {
    min-width: 0;
}

#depoimentos .rc-author-name {
    color: #111111;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

#depoimentos .rc-author-company {
    margin-top: 3px;

    color: var(--rc-muted-foreground, #999999);

    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    #depoimentos.rc-depoimentos {
        padding: 72px 0;
    }

    #depoimentos .rc-depoimentos-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    #depoimentos .rc-depoimentos-header {
        margin-bottom: 48px;
    }

    #depoimentos .rc-depoimentos-grid {
        gap: 20px;
    }

    #depoimentos .rc-depoimento-card {
        padding: 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #depoimentos.rc-depoimentos {
        padding: 64px 0;
    }

    #depoimentos .rc-depoimentos-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #depoimentos .rc-depoimentos-header {
        margin-bottom: 40px;
    }

    #depoimentos .rc-eyebrow {
        font-size: 12px;
    }

    #depoimentos .rc-depoimentos-header h2 {
        font-size: 30px;
        line-height: 1.2;
        color: #111111;
    }

    #depoimentos .rc-depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #depoimentos .rc-depoimento-card {
        padding: 24px;
    }

    #depoimentos .rc-depoimento-text {
        font-size: 14px;
        line-height: 1.65;
        color: #111111;
    }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    #depoimentos .rc-depoimento-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

}