._1drm _1ds4 {
    height: 140px !important;
}

/* Botão Flutuante do WhatsApp - Posicionado à DIREITA */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Mudado para direita */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
}

/* Badge do reCAPTCHA - Z-index alto para sobrepor vídeo */
.grecaptcha-badge {
    left: 4px !important;
    /* Move o selo para a esquerda com um pequeno espaçamento */
    right: unset !important;
    /* Desativa a propriedade 'right' padrão */
    /* As propriedades abaixo ajudam a manter a funcionalidade de hover e evitar sobreposição */
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 99999 !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
    /* Expande o selo ao passar o mouse */
}


/* Botão WhatsApp do Banner */
.whatsapp-float-center {
    display: inline-flex;
    align-items: center;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    background-color: #25D366;
}

.whatsapp-float-center:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.whatsapp-icon-center {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    background-color: transparent !important;
}

.whatsapp-text-center {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: white;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        /* Direita no mobile também */
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float-center {
        padding: 10px 20px;
        font-size: 14px;
    }

    .whatsapp-icon-center {
        width: 24px;
        height: 24px;
    }
}