.depo-card {
    color: #fff;
    background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.932);
    padding: 2rem;
    transition: transform 0.3s ease;
}
.depo-card img {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3px;
    background: radial-gradient(circle at center, #00c3ff 0%, #0072ff 100%);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.depo-card:hover{
    transform: scale(1.03);
    box-shadow: 0 0 15px #203a43;
}
.depo-card img:hover{
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(0, 144, 255, 0.6);
}
.depo-card .text-muted{
    color: #ffffff91 !important;
}
main img{
    /* Tamanho das Imagens dos Avatares */
    width: 70px !important;
    height: 70px !important;
}

main .verificado{
    background: rgba(0, 255, 120, 0.1);
    border: 1px solid rgba(0, 255, 120, 0.3);
    color: #00ff88;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
main .verificado i{
    font-size: 1rem;
    animation: pulse 2s infinite;
}
@keyframes pulse{
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50%{
        transform: scale(1.2);
        opacity: 0.7;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
main .verificado:hover{
    box-shadow: 0 0 10px rgba(0, 255, 120, 0.4);
    transform: translateY(-2px);
}

.stars i {
    color: #ffc107;
}

.verificado {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Section - Avaliação */
.botao-avaliar{
    background: linear-gradient(90deg, #000 0%, #000 10%, #eb790f 100%);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 113, 18, 0.445);
}
.botao-avaliar:hover{
    background: linear-gradient(145deg, #965315 100% , #352614 0%);
    transform: translateY(3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(199, 86, 21, 0.589);
    color: #fff;
}
.botao-avaliar:active{
    transform: translateY(1px) scale(0.98);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}

.botao-whats{
    background: linear-gradient(90deg, #000 0%,  #6b6b6b 100%);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 12px rgba(206, 201, 197, 0.455);
}
.botao-whats:hover{
    background: linear-gradient(145deg, #555 100%, #455 0%);
    transform: translateY(3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(255, 255, 255, 0.599);
    color: #fff;
}
.botao-whats:active{
    transform: translateY(1px) scale(0.98);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Section - Rodapé */
.bg-rodape{
    background: radial-gradient(circle at top, #00111a, #000);
}

/* Section - Rodapé */
.btnVoltar{
    background: radial-gradient(circle at top, #000000, #00111a);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.25);
}
.btnVoltar:hover{
    background: radial-gradient(circle at top, #053149, #000);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(11, 39, 71, 0.589);
}
.btnVoltar:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}