html {
    scroll-behavior: smooth;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.hero-slide {
    display: none;
    animation: fadeIn 0.7s ease-in-out;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

#whatsapp-widget-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
}

#whatsapp-widget-container.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Estilos para o mosaico de depoimentos da equipe */
.mosaic-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: absolute;
    /* Adicionado para controlar a posição via CSS */
}

.mosaic-item.active-testimonial {
    transform: scale(1.05);
    box-shadow: 0 0 6px 0 #2e2e2ea4;
    /* Cor brand-orange */
    z-index: 10;
}

.mosaic-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-item:hover img {
    transform: scale(1.10);
}

/*
  CONTROLES DE POSIÇÃO INDIVIDUAL DO MOSAICO

*/
.mosaic-item-1 {
    top: 14px !important;
    left: -48px !important;
    width: 38% !important;
    height: 47% !important;

}

.mosaic-item-2 {
    top: 0;
    right: 0;
    width: 48%;
    height: 45%;
}

.mosaic-item-3 {
    top: 50%;
    left: 50%;
    width: 35%;
    height: 40%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.mosaic-item-4 {
    bottom: -137px !important;
    left: -34px !important;
    width: 55% !important;
    height: 78% !important;
}

.mosaic-item-5 {
    bottom: -108px !important;
    right: 0 !important;
    width: 48% !important;
    height: 60% !important;
}

.text-2xl {
    font-size: 1.3rem;
    line-height: 2rem;
}

.text-banner{
    text-align: left !important;
}

.vagas{
        margin-top: 10rem !important;
}