.typing {
    font-size: 2em;
    border-right: 2px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.7s step-end infinite;
    display: inline-block;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typing span {
    color: white;
    transition: color 0.3s ease;
}

.typing span.colored {
    animation: colorFade 1s forwards;
}

@keyframes colorFade {
    to {
        color: #d9bb62;
        text-shadow: 0 0 10px #d9bb62;
    }
}

.logoh {
    height: 100px;
    height: 100px;
}

.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.testimonial-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}