/* Thumb estilo "stories" do Instagram nos projetos */
.portfolio-story-thumb {
    width: 80px;              /* aumentei o tamanho */
    height: 80px;
    border-radius: 50%;
    padding: 3px;             /* espaço para o "anel" de fora */
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-story-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;   /* cor do fundo da seção */
}

/* Alinhamento título + thumb dentro dos itens de projeto */
.custom-project-list-item-1 .thumb-info-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Cards de portfólio um pouco maiores */
.custom-project-list-item-1 {
    padding: 1.8rem 0;        /* aumenta a altura do card */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Título dos projetos com fonte menor */
.custom-project-list-item-title-1 {
    font-size: 1.1rem !important; /* diminui o texto tipo "Dr. Gilvan" */
    line-height: 1.2;
}

/* AlteraÃ§Ãµes minhas aqui */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pulse-circle {
    width: 100%;
    height: 100%;
    background-color: #4dc247;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transition: box-shadow 0.3s ease;
}

.whatsapp-icon {
    width: 44px;
    height: 44px;
    fill: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover .pulse-circle {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.5);
}
