/* =========================================================
   SONHOS REALIZADOS
   ========================================================= */

.sonhos-page {
    background: var(--background);
}

.sonhos-lista {
    padding: 45px 0 45px;
}


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

.sonhos-lista .section-header {
    margin-bottom: 70px;
}


/* =========================================================
   LISTA
   ========================================================= */

.depoimentos-lista {
    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================================
   DEPOIMENTO
   ========================================================= */

.depoimento-item {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 65px;

    padding: 50px 0;

    border-bottom: 1px solid #e1e1e4;
}

.depoimento-item:first-child {
    padding-top: 0;
}

.depoimento-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


/* ALTERNADO */

.depoimento-item.invertido .depoimento-imagem {
    order: 2;
}

.depoimento-item.invertido .depoimento-conteudo {
    order: 1;
}


/* =========================================================
   IMAGEM
   ========================================================= */

.depoimento-imagem {
    width: 100%;
}

.depoimento-imagem img {
    display: block;

    width: 100%;

    max-height: 560px;

    object-fit: contain;

    object-position: center;

    border-radius: 8px;

    background: #ededee;
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.depoimento-conteudo {
    position: relative;

    padding: 10px 0;
}

.depoimento-aspas {
    display: block;

    margin-bottom: 12px;

    color: var(--moreschi);

    font-family: Georgia, serif;

    font-size: 62px;
    font-weight: 400;

    line-height: .8;

    opacity: .35;
}

.depoimento-texto {
    margin: 0 0 26px;

    color: #454545;

    font-size: 17px;
    font-weight: 300;

    line-height: 1.85;
}

.depoimento-nome {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin: 0;

    color: var(--moreschi);

    font-size: 15px;
    font-weight: 500;
}

.depoimento-nome::before {
    content: "";

    width: 25px;
    height: 2px;

    background: var(--moreschi);
}


/* =========================================================
   LOADING
   ========================================================= */

.sonhos-loading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 180px;

    color: #777;

    font-size: 14px;
    font-weight: 300;
}

.sonhos-loading i {
    color: var(--moreschi);

    font-size: 18px;
}


/* =========================================================
   MENSAGEM
   ========================================================= */

.sonhos-mensagem {
    max-width: 700px;

    margin: 30px auto;

    padding: 25px;

    border: 1px solid #e1e1e4;
    border-radius: 7px;

    background: white;

    color: #666;

    font-size: 14px;
    font-weight: 300;

    text-align: center;
}


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

@media (max-width: 991px) {

    .sonhos-lista {
        padding: 45px 0 45px;
    }

    .depoimento-item {
        gap: 40px;
    }

    .depoimento-texto {
        font-size: 15px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    .sonhos-lista {
        padding: 45px 0 45px;
    }

    .sonhos-lista .section-header {
        margin-bottom: 45px;
    }

    .depoimento-item {
        display: block;

        padding: 40px 0;
    }

    .depoimento-item.invertido .depoimento-imagem,
    .depoimento-item.invertido .depoimento-conteudo {
        order: initial;
    }

    .depoimento-imagem {
        margin-bottom: 28px;
    }

    .depoimento-imagem img {
        max-height: none;
    }

    .depoimento-conteudo {
        padding: 0;
    }

    .depoimento-aspas {
        margin-bottom: 8px;

        font-size: 52px;
    }

    .depoimento-texto {
        margin-bottom: 20px;

        font-size: 15px;

        line-height: 1.75;
    }

}

/* =========================================================
   DEPOIMENTO SEM FOTO
   ========================================================= */

.depoimento-item.sem-foto {
    display: block;

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    padding: 60px 0;
}

.depoimento-item.sem-foto .depoimento-conteudo {
    padding: 20px 40px;

    text-align: center;
}

.depoimento-item.sem-foto .depoimento-aspas {
    margin-bottom: 18px;

    font-size: 72px;
}

.depoimento-item.sem-foto .depoimento-texto {
    font-size: 18px;

    line-height: 1.9;
}

.depoimento-item.sem-foto .depoimento-nome {
    justify-content: center;
}

@media (max-width: 767px) {

    .depoimento-item.sem-foto {
        padding: 40px 0;
    }

    .depoimento-item.sem-foto .depoimento-conteudo {
        padding: 10px 0;
    }

    .depoimento-item.sem-foto .depoimento-texto {
        font-size: 15px;
    }

}