/* Tela como funciona */

.image-check {
    width: 10%;
}

@media (min-width: 425px) {
    .image-check {
        width: 5%;
    }
}

@media (min-width: 1300px) {
    .image-check {
        width: 4%;
    }
}

.seta-responsiva {
    transform: rotate(90deg);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .seta-responsiva {
        transform: rotate(0deg);
        margin-bottom: 0;
    }
}

.text-btn-solicite-emprestimo {
    font-size: max(1rem, 1vw);
}


/* Tela quem somos */

.text-quem-somos p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.selo-reclame-aqui {
    display: inline-block;
    transform: scale(1.0);
    transform-origin: center;
}

@media (min-width: 1440px) {
    .selo-reclame-aqui {
        transform: scale(1.3);
        margin-left: 20px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #006666;
}

.carousel-control-prev {
    left: -10px;
}

.carousel-control-next {
    right: -10px;
}

/* Tela emprestimo consignado */

.image-check-consignado {
    width: 30px;
}

@media (min-width: 1024px) {
    .image-check-consignado {
        width: 40px;
    }
}

.container-passos {
    border-radius: 40px;
}

.card-quem-pode-contratar {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.card-quando-faz-sentido {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    height: 100%;
}

@media (min-width: 500px) {
    .card-quando-faz-sentido {
        padding: 30px;
    }
}

.titulo-teal {
    color: #1a5c58;
    font-weight: bold;
}

.titulo-lime {
    color: #BFD73E;
    font-weight: bold;
}


.lista-quem-pode {
    list-style: none;
    padding-left: 0;
}

.lista-quem-pode li {
    margin-bottom: 8px;
    color: #555;
}

.item-categoria {
    font-weight: bold;
    color: #444;
    margin-top: 15px;
    display: block;
}

.item-check {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.item-check::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url('../image/ok.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.faq-item {
    border: none;
    background: none;
    margin-bottom: 15px;
}

.faq-header {
    background-color: #2d6a66;
    color: white;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.faq-header::before {
    content: "";
    width: 12px;
    height: 100%;
    background-color: #d4e939;
    position: absolute;
    left: 0;
    top: 0;
}

.faq-button {
    background: none;
    border: none;
    color: white;
    width: 100%;
    padding: 18px 25px 18px 35px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.faq-button:focus {
    outline: none;
    box-shadow: none;
}

.faq-button::after {
    content: '▼';
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-button[aria-expanded="true"]::after {
    content: '▲';
}

.faq-body {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px 30px;
    color: #555;
    line-height: 1.6;
}

/* Tela fgts */

.card-lateral-fgts {
    background-color: rgba(15, 92, 87, 0.9);
    border-radius: 15px;
    padding: 15px;
    padding-top: 35px;
}

.lista-fg-custom {
    list-style: none;
    padding-left: 0;
    color: #ffffff;
}

.lista-fg-custom li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.lista-fg-custom li::before {
    content: "•";
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}