


/* Remove a caixa de botões flutuantes do Elementor */
.elementor-floating-buttons {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Remove especificamente o widget WhatsApp se for usado */
.elementor-widget-whatsapp {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Remove qualquer link direto para WhatsApp flutuante */
a[href*="wa.me"],
a[href*="api.whatsapp.com"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.carousel-container {
    width: 100vw;
    max-width: 100vw;
    height: 100vw;
    max-height: 650px;
    position: relative;
    margin: auto;
    overflow: hidden; /* Garante que o overflow seja tratado */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none; /* Inicialmente oculta todos os slides */
    text-align: center;
}

.carousel-slide img {
    width: 100vh; /* Ajusta a imagem para preencher o slide */
    height: auto;
    vertical-align: auto;
    object-fit: cover;
}





@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%); /* Começa 100% à esquerda */
    }
    to {
        opacity: 10;
        transform: translateX(0); /* Termina na posição original */
    }
    
}


    

.text-carousel-slide.slide-in-effect {
    animation-name: slideInFromLeft;
    animation-duration: 3.8s; /* Duração da transição, ajuste conforme preferir */
    animation-timing-function: ease-out; /* Tipo de curva da animação */
}

/* Botões de Próximo e Anterior */
.previmg, .nextimg {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.nextimg {
    right: 35px;
    border-radius: 3px 0 0 3px;
}

.previmg:hover, .nextimg:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Pontos indicadores */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Carrossel de Texto */
.text-carousel-container {
    max-width: 600px;
    position: relative;
    margin: 50px auto;
    border: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: body;
    padding: 20px;
    box-sizing: border-box; /* Garante que padding não adicione largura total */
    min-height: 150px; /* Altura mínima para evitar colapso */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-carousel-slide {
    display: none;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.5;
    color: #333;
    padding: 10px;
}

.text-carousel-slide p {
    margin-bottom: 10px;
}

.text-carousel-slide .author {
    font-style: italic;
    color: white;
    margin-top: 15px;
    display: block;
}

/* Botões de navegação para texto (iguais aos de imagem, mas ajustados) */
.text-carousel-container .prev,
.text-carousel-container .next {
    top: 50%; /* Centraliza verticalmente dentro do contêiner */
    background-color: rgba(0,0,0,0.3); /* Um pouco mais transparente para texto */
}

.text-carousel-container .prev:hover,
.text-carousel-container .next:hover {
    background-color: rgba(0,0,0,0.6);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}
.prev{
    left: 0px;
    border-radius: 3px 0 0 3px;

}
/* Pontos para texto */
.text-dot-container {
    text-align:center;
    margin-top: 20px;
}


.text-dot.active, .text-dot:hover {
    background-color: #717171;
}













.team-section {
    margin: 0;
    width: 100%;
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}



.carousel-track {
    display: flex;
    width: 80px; /* 3 membros x 2 para loop infinito */
    height: 100%;
    animation: scroll 50s linear infinite;
    gap: 40px;
    margin: 0;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 3 - 120px)); /* largura de 3 cards + gaps */
    }
}

.team-card {
    flex-shrink: 0;
    width: 380px;
    height: 380px;
    border-radius: 25px;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.team-card:hover::before {
    opacity: 1;
}



.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .card-image img {
    transform: scale(1.1);
}



.team-card:hover .card-content {
    transform: translateY(0);
    opacity: 1;
    margin: 0px;
}



.member-role {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.team-card:hover .member-description {
    opacity: 1;
    transform: translateY(0);
}



/* Efeito de brilho no hover */



@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Indicador de scroll */




.scroll-dot.active {
    background: #667eea;
    transform: scale(1.2);
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}


@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .carousel-container {
        height: 400px;
    }
    
    .team-card {
        width: 280px;
        height: 350px;
    }
    
    .carousel-track {
        width: calc(320px * 6);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 3 - 120px));
        }
    }
    
    .card-content {
        padding: 20px;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .scroll-hint {
        display: none;
    }
}



@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}



