/* =========================================================
   REDECALL — RESULTADOS
   ========================================================= */

#resultados.rc-resultados {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #f5f6f8;
    color: #17191d;
}

/* Fundo */
.rc-resultados__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent,
        transparent
    );
    opacity: 0;
}

/* Container */
.rc-resultados .rc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

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

.rc-resultados__header {
    text-align: center;
    margin-bottom: 64px;
}

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

.rc-resultados__header h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #17191d;
}

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

.rc-resultados__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

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

.rc-resultados-card {
    position: relative;
    padding: 32px;
    text-align: center;

    background: #ffffff;
    border: 1px solid #e3e5e8;
    border-radius: 12px;

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

.rc-resultados-card:hover {
    border-color: rgba(227, 6, 19, 0.3);
    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   ÍCONE
   ========================================================= */

.rc-resultados-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    margin: 0 auto 16px;

    color: #e30613;

    transition:
        transform 0.3s ease;
}

.rc-resultados-card:hover
.rc-resultados-card__icon {
    transform: scale(1.1);
}

.rc-resultados-card__icon svg {
    width: 24px;
    height: 24px;
}

/* =========================================================
   NÚMERO
   ========================================================= */

.rc-resultados-card__number {
    margin-bottom: 8px;

    color: #17191d;

    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* =========================================================
   TÍTULO
   ========================================================= */

.rc-resultados-card__title {
    margin-bottom: 4px;

    color: #17191d;

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

/* =========================================================
   DESCRIÇÃO
   ========================================================= */

.rc-resultados-card__description {
    color: #70757d;

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

/* =========================================================
   SETA — PRÓXIMA SEÇÃO
   ========================================================= */

.rc-section-next {
    display: flex;
    justify-content: center;

    margin-top: 32px;

    cursor: pointer;
    text-decoration: none;
}

.rc-section-next__circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid #d8dbe0;
    border-radius: 50%;

    color: #70757d;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.rc-section-next:hover
.rc-section-next__circle {
    border-color: rgba(227, 6, 19, 0.5);
    background: rgba(227, 6, 19, 0.06);
    color: #e30613;
}

.rc-section-next__circle svg {
    width: 20px;
    height: 20px;
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA
   ========================================================= */

.rc-resultados .rc-reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.rc-resultados .rc-reveal.rc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay dos cards */

.rc-resultados-card:nth-child(1) {
    transition-delay: 0.05s;
}

.rc-resultados-card:nth-child(2) {
    transition-delay: 0.12s;
}

.rc-resultados-card:nth-child(3) {
    transition-delay: 0.19s;
}

.rc-resultados-card:nth-child(4) {
    transition-delay: 0.26s;
}

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

@media (max-width: 1024px) {

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

    .rc-resultados .rc-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .rc-resultados__header {
        margin-bottom: 48px;
    }

    .rc-resultados__header h2 {
        font-size: 40px;
    }

    .rc-resultados__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .rc-resultados-card {
        padding: 28px 24px;
    }

}

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

@media (max-width: 767px) {

    #resultados.rc-resultados {
        padding: 56px 0;
    }

    .rc-resultados .rc-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rc-resultados__header {
        margin-bottom: 40px;
    }

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

    .rc-resultados__header h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .rc-resultados__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .rc-resultados-card {
        padding: 24px 14px;
        border-radius: 10px;
    }

    .rc-resultados-card__number {
        font-size: 32px;
    }

    .rc-resultados-card__title {
        font-size: 12px;
    }

    .rc-resultados-card__description {
        font-size: 11px;
    }

    .rc-resultados-card__icon {
        margin-bottom: 12px;
    }

    .rc-resultados-card__icon svg {
        width: 22px;
        height: 22px;
    }

    .rc-section-next {
        margin-top: 28px;
    }

}